1
0

Makefile 863 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 ${ADK_TOPDIR}/rules.mk
  4. PKG_NAME:= libunistring
  5. PKG_VERSION:= 0.9.7
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 2e3764512aaf2ce598af5a38818c0ea23dedf1ff5460070d1b6cee5c3336e797
  8. PKG_DESCR:= functions for manipulating unicode strings
  9. PKG_SECTION:= libs/misc
  10. PKG_URL:= http://www.gnu.org/software/libunistring/
  11. PKG_SITES:= ${MASTER_SITE_GNU:=libunistring/}
  12. PKG_OPTS:= dev
  13. include ${ADK_TOPDIR}/mk/package.mk
  14. $(eval $(call PKG_template,LIBUNISTRING,libunistring,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  15. libunistring-install:
  16. ${INSTALL_DIR} ${IDIR_LIBUNISTRING}/usr/lib
  17. ${CP} ${WRKINST}/usr/lib/libunistring.so* ${IDIR_LIBUNISTRING}/usr/lib
  18. include ${ADK_TOPDIR}/mk/pkg-bottom.mk