Makefile 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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:= autoconf
  5. PKG_VERSION:= 2.69
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 50f97f4159805e374639a73e2636f22e
  8. PKG_DESCR:= automatically configure software source code packages
  9. PKG_SECTION:= dev/tools
  10. HOST_BUILDDEP:= m4-host
  11. PKG_URL:= http://www.gnu.org/software/autoconf/
  12. PKG_SITES:= ${MASTER_SITE_GNU:=autoconf/}
  13. PKG_OPTS:= noscripts
  14. include ${ADK_TOPDIR}/mk/host.mk
  15. include ${ADK_TOPDIR}/mk/package.mk
  16. $(eval $(call HOST_template,AUTOCONF,autoconf,${PKG_VERSION}-${PKG_RELEASE}))
  17. $(eval $(call PKG_template,AUTOCONF,autoconf,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  18. XAKE_FLAGS+= PERL="/usr/bin/perl"
  19. autoconf-install:
  20. ${INSTALL_DIR} ${IDIR_AUTOCONF}/usr/bin
  21. ${INSTALL_DIR} ${IDIR_AUTOCONF}/usr/share/autoconf
  22. ${CP} ${WRKINST}/usr/bin/auto* ${IDIR_AUTOCONF}/usr/bin
  23. ${CP} ${WRKINST}/usr/share/autoconf/* \
  24. ${IDIR_AUTOCONF}/usr/share/autoconf
  25. include ${ADK_TOPDIR}/mk/host-bottom.mk
  26. include ${ADK_TOPDIR}/mk/pkg-bottom.mk