diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-10-10 10:24:33 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-10-10 10:24:33 +0200 |
commit | 052c8c9fdcadd52f9eecc4de036b7afdf7f4942f (patch) | |
tree | cae9794f96e99ade789e0ebc1e05a0e7a4ae11a0 /package/libbluray | |
parent | 763a7d577807bd623434caf64de151635e3537cb (diff) | |
parent | fe63f19bc969871820b61846b3301c15a269b553 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/libbluray')
-rw-r--r-- | package/libbluray/Makefile | 26 |
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 |