Makefile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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:= gettext-tiny
  5. PKG_VERSION:= 0.0.3
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 3af6fd8a9042603b61f634b1c6f49e7e
  8. PKG_DESCR:= Gettext stub and replacement
  9. PKG_SECTION:= libs
  10. PKG_URL:= https://github.com/rofl0r/gettext-tiny
  11. PKG_SITES:= http://ftp.barfooze.de/pub/sabotage/tarballs/
  12. PKG_OPTS:= dev
  13. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  14. include $(TOPDIR)/mk/host.mk
  15. include $(TOPDIR)/mk/package.mk
  16. $(eval $(call HOST_template,GETTEXT_TINY,gettext-tiny,$(PKG_VERSION)-${PKG_RELEASE}))
  17. $(eval $(call PKG_template,GETTEXT_TINY,gettext-tiny,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  18. HOST_STYLE:= manual
  19. CONFIG_STYLE:= manual
  20. host-build:
  21. (cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -f ${MAKE_FILE} \
  22. ${HOST_MAKE_FLAGS} ${HOST_ALL_TARGET})
  23. gettext-tiny-hostinstall:
  24. ${CP} ${WRKBUILD}/include/libintl.h ${STAGING_HOST_DIR}/usr/include
  25. ${CP} ${WRKBUILD}/libintl.a ${STAGING_HOST_DIR}/usr/lib
  26. include ${TOPDIR}/mk/host-bottom.mk
  27. include ${TOPDIR}/mk/pkg-bottom.mk