Makefile 1.0 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 ${TOPDIR}/rules.mk
  4. PKG_NAME:= autoconf
  5. <<<<<<< HEAD
  6. PKG_VERSION:= 2.64
  7. PKG_RELEASE:= 2
  8. PKG_MD5SUM:= 30a198cef839471dd4926e92ab485361
  9. =======
  10. PKG_VERSION:= 2.65
  11. PKG_RELEASE:= 1
  12. PKG_MD5SUM:= 46cfb40e0babf4c64f8325f03da81c9b
  13. >>>>>>> 4d569ed1a3305c7b7abe8fa4273cea3b559cc85a
  14. PKG_DESCR:= GNU autoconf
  15. PKG_SECTION:= utils
  16. PKG_URL:= http://www.gnu.org/software/autoconf/
  17. PKG_SITES:= ${MASTER_SITE_GNU:=autoconf/}
  18. PKG_OPTS:= noscripts
  19. include ${TOPDIR}/mk/package.mk
  20. $(eval $(call PKG_template,AUTOCONF,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  21. post-install:
  22. ${INSTALL_DIR} ${IDIR_AUTOCONF}/usr/bin
  23. ${INSTALL_DIR} ${IDIR_AUTOCONF}/usr/share/autoconf
  24. ${CP} ${WRKINST}/usr/bin/auto* ${IDIR_AUTOCONF}/usr/bin
  25. ${CP} ${WRKINST}/usr/share/autoconf/* \
  26. ${IDIR_AUTOCONF}/usr/share/autoconf
  27. include ${TOPDIR}/mk/pkg-bottom.mk