Makefile 749 B

123456789101112131415161718192021222324
  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:= xz
  5. PKG_VERSION:= 5.0.0
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= f3c0706d100ad2b6d63327584d026c50
  8. PKG_DESCR:= lzma compression utility
  9. PKG_SECTION:= archive
  10. PKG_URL:= http://tukaani.org/xz/
  11. PKG_SITES:= http://tukaani.org/xz/
  12. include ${TOPDIR}/mk/package.mk
  13. $(eval $(call PKG_template,XZ,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  14. post-install:
  15. ${INSTALL_DIR} ${IDIR_XZ}/usr/bin ${IDIR_XZ}/usr/lib
  16. ${CP} ${WRKINST}/usr/bin/* ${IDIR_XZ}/usr/bin
  17. ${CP} ${WRKINST}/usr/lib/*.so* ${IDIR_XZ}/usr/lib
  18. include ${TOPDIR}/mk/pkg-bottom.mk