summaryrefslogtreecommitdiff
path: root/package/libbluray
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-10-09 17:21:31 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2013-10-09 17:21:31 +0200
commitaf7ff722d227eb374dc035f7bf890ee4db8cdf11 (patch)
tree6e16ac2783c9f4de30516603a5ff8453c8c221cf /package/libbluray
parent72e736015f94d62211643ad1bedeeeacc77497db (diff)
fix usb keyboard support, startup xbmc without read-write root, add bluray support
Diffstat (limited to 'package/libbluray')
-rw-r--r--package/libbluray/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/package/libbluray/Makefile b/package/libbluray/Makefile
new file mode 100644
index 000000000..d65530d8f
--- /dev/null
+++ b/package/libbluray/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:= libbluray
+PKG_VERSION:= 0.4.0
+PKG_RELEASE:= 1
+PKG_MD5SUM:= c7a1cc71cb9747f93122ec650d4ae933
+PKG_DESCR:= bluray library
+PKG_SECTION:= libs
+PKG_URL:= http://www.videolan.org/developers/libbluray.html
+PKG_SITES:= ftp://ftp.videolan.org/pub/videolan/libbluray/${PKG_VERSION}/
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBBLURAY,libbluray,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+libbluray-install:
+ $(INSTALL_DIR) $(IDIR_LIBBLURAY)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libbluray*.so* \
+ $(IDIR_LIBBLURAY)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk