summaryrefslogtreecommitdiff
path: root/package/libjasper
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/libjasper
parent5212b6029108093bb3ac6d8386fd999fd00f2701 (diff)
add xmbc package for raspberry-pi target
Diffstat (limited to 'package/libjasper')
-rw-r--r--package/libjasper/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/package/libjasper/Makefile b/package/libjasper/Makefile
new file mode 100644
index 000000000..ad95d89d6
--- /dev/null
+++ b/package/libjasper/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:= libjasper
+PKG_VERSION:= 1.900
+PKG_RELEASE:= 1
+PKG_MD5SUM:= a342b2b4495b3e1394e161eb5d85d754
+PKG_DESCR:= implementation of the codec specified in the JPEG-2000 Part-1 standard
+PKG_SECTION:= libs
+PKG_URL:= http://www.ece.uvic.ca/~frodo/jasper/
+PKG_SITES:= http://www.ece.uvic.ca/~frodo/jasper/software/
+
+DISTFILES:= jasper-${PKG_VERSION}.1.zip
+WRKDIST= ${WRKDIR}/jasper-$(PKG_VERSION).1
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBJASPER,libjasper,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+libjasper-install:
+ $(INSTALL_DIR) $(IDIR_LIBJASPER)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libjasper*.so* \
+ $(IDIR_LIBJASPER)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk