summaryrefslogtreecommitdiff
path: root/package/libx264/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-10-11 17:41:33 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2013-10-11 17:41:33 +0200
commit0e9ca8afb6da39fea0555d5882e8eb293c3efb62 (patch)
tree5d61884381ef7718214e4b347e32e00fe854f6db /package/libx264/Makefile
parent19b403cb69ae6a686cdc54b55275fc31f294eceb (diff)
parent2e130d2486b6dea4a6f0cb3f09bb8e0d97efb188 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/libx264/Makefile')
-rw-r--r--package/libx264/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/package/libx264/Makefile b/package/libx264/Makefile
new file mode 100644
index 000000000..ff54b8911
--- /dev/null
+++ b/package/libx264/Makefile
@@ -0,0 +1,27 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= libx264
+# actually is snapshot x264-snapshot-20131010-2245
+PKG_VERSION:= 1.0
+PKG_RELEASE:= 1
+PKG_MD5SUM:= e6718029b4bc955f1dbb9bdafeed3ac0
+PKG_DESCR:= H264 encoding library
+PKG_SECTION:= libs
+PKG_URL:= http://www.videolan.org/developers/x264.html
+PKG_SITES:= http://openadk.org/distfiles/
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBX264,libx264,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_ARGS+= --disable-cli
+
+libx264-install:
+ $(INSTALL_DIR) $(IDIR_LIBX264)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libx264*.so* \
+ $(IDIR_LIBX264)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk