Makefile 771 B

1234567891011121314151617181920212223242526
  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:= m4
  5. PKG_VERSION:= 1.4.13
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= e9e36108b5f9855a82ca4a07ebc0fd2e
  8. PKG_DESCR:= macro processor
  9. PKG_SECTION:= comp
  10. PKG_URL:= http://www.gnu.org/software/m4/
  11. PKG_SITES:= ${MASTER_SITE_GNU:=${PKG_NAME}/}
  12. include ${TOPDIR}/mk/package.mk
  13. $(eval $(call PKG_template,M4,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  14. CONFIGURE_ENV+= ac_cv_func_mbrtowc=no \
  15. gl_cv_func_wcrtomb_retval=no
  16. post-install:
  17. ${INSTALL_DIR} ${IDIR_M4}/usr/bin
  18. ${INSTALL_BIN} ${WRKINST}/usr/bin/m4 ${IDIR_M4}/usr/bin
  19. include ${TOPDIR}/mk/pkg-bottom.mk