Makefile 864 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.10
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= eb8fb2c3e4b6e2d336608377050892b54c3c983b646c561836550863003c05d7
  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