Makefile 947 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 ${ADK_TOPDIR}/rules.mk
  4. PKG_NAME:= libunistring
  5. PKG_VERSION:= 0.9.3
  6. PKG_RELEASE:= 2
  7. PKG_HASH:= 610d3ec724fbdaa654afe3cff20b9f4d504be3fd296fded2e0f7f764041006a3
  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. PKG_LIBC_DEPENDS:= uclibc-ng glibc
  14. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  15. include ${ADK_TOPDIR}/mk/package.mk
  16. $(eval $(call PKG_template,LIBUNISTRING,libunistring,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  17. libunistring-install:
  18. ${INSTALL_DIR} ${IDIR_LIBUNISTRING}/usr/lib
  19. ${CP} ${WRKINST}/usr/lib/libunistring.so* ${IDIR_LIBUNISTRING}/usr/lib
  20. include ${ADK_TOPDIR}/mk/pkg-bottom.mk