summaryrefslogtreecommitdiff
path: root/package/libmpeg2
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-08-12 10:30:50 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2013-08-12 10:30:50 +0200
commit8f16335443a322578274737c8d80ce557e4d2656 (patch)
tree947d42d781b409f72c9f0fa957d8796352f9b386 /package/libmpeg2
parent5212b6029108093bb3ac6d8386fd999fd00f2701 (diff)
add xmbc package for raspberry-pi target
Diffstat (limited to 'package/libmpeg2')
-rw-r--r--package/libmpeg2/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/package/libmpeg2/Makefile b/package/libmpeg2/Makefile
new file mode 100644
index 000000000..f10a34f34
--- /dev/null
+++ b/package/libmpeg2/Makefile
@@ -0,0 +1,26 @@
+# 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:= libmpeg2
+PKG_VERSION:= 0.5.1
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 0f92c7454e58379b4a5a378485bbd8ef
+PKG_DESCR:= MPEG-1 & -2 decoding library
+PKG_SECTION:= libs
+PKG_URL:= http://libmpeg2.sourceforge.net/
+PKG_SITES:= http://libmpeg2.sourceforge.net/files/
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBMPEG2,libmpeg2,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_ARGS+= --disable-sdl
+
+libmpeg2-install:
+ $(INSTALL_DIR) $(IDIR_LIBMPEG2)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libmpeg2*.so* \
+ $(IDIR_LIBMPEG2)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk