summaryrefslogtreecommitdiff
path: root/package/xvidcore
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-09-17 21:22:49 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2011-09-17 21:22:49 +0200
commitbd46265267632702c787a3f4611dec0db95ff79a (patch)
treef624c3fa0f65331bc568d84c7f55f1515eefd7c0 /package/xvidcore
parent0243247e542746a7bf9c560f57012649d92adf21 (diff)
add Xvid codec
Diffstat (limited to 'package/xvidcore')
-rw-r--r--package/xvidcore/.Makefile.swpbin0 -> 12288 bytes
-rw-r--r--package/xvidcore/Makefile28
2 files changed, 28 insertions, 0 deletions
diff --git a/package/xvidcore/.Makefile.swp b/package/xvidcore/.Makefile.swp
new file mode 100644
index 000000000..2a882c77b
--- /dev/null
+++ b/package/xvidcore/.Makefile.swp
Binary files differ
diff --git a/package/xvidcore/Makefile b/package/xvidcore/Makefile
new file mode 100644
index 000000000..e17bbe8ea
--- /dev/null
+++ b/package/xvidcore/Makefile
@@ -0,0 +1,28 @@
+# 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:= xvidcore
+PKG_VERSION:= 1.3.2
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 87c8cf7b69ebed93c2d82ea5709d098a
+PKG_DESCR:= Xvid Codec library
+PKG_SECTION:= libs
+PKG_URL:= http://www.xvid.org/
+PKG_SITES:= http://downloads.xvid.org/downloads/
+
+PKG_SUBPKGS:= LIBXVID
+
+WRKDIST= $(WRKDIR)/$(PKG_NAME)/build/generic
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBXVID,libxvid,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+libxvid-install:
+ $(INSTALL_DIR) $(IDIR_LIBXVID)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libxvidcore.so* \
+ $(IDIR_LIBXVID)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk