Makefile 892 B

12345678910111213141516171819202122232425262728
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. PKG_NAME:= libbluray
  5. PKG_VERSION:= 0.4.0
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= c7a1cc71cb9747f93122ec650d4ae933
  8. PKG_DESCR:= bluray library
  9. PKG_SECTION:= libs
  10. PKG_BUILDDEP:= libxml2
  11. PKG_URL:= http://www.videolan.org/developers/libbluray.html
  12. PKG_SITES:= ftp://ftp.videolan.org/pub/videolan/libbluray/${PKG_VERSION}/
  13. PKG_OPTS:= dev
  14. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  15. include $(TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,LIBBLURAY,libbluray,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  17. libbluray-install:
  18. $(INSTALL_DIR) $(IDIR_LIBBLURAY)/usr/lib
  19. $(CP) $(WRKINST)/usr/lib/libbluray*.so* \
  20. $(IDIR_LIBBLURAY)/usr/lib
  21. include ${TOPDIR}/mk/pkg-bottom.mk