Makefile 715 B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # Copyright (C) 2006-2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=autoconf
  9. PKG_VERSION:=2.71
  10. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  11. PKG_SOURCE_URL:=@GNU/autoconf
  12. PKG_HASH:=f14c83cfebcc9427f2c3cea7258bd90df972d92eb26752da4ddad81c87a0faa4
  13. include $(INCLUDE_DIR)/host-build.mk
  14. HOST_CONFIGURE_VARS += \
  15. EMACS="no" \
  16. PERL="/usr/bin/env perl"
  17. define Host/Compile
  18. -$(call Host/Compile/Default,--touch install-man1) # disable building of man pages
  19. $(call Host/Compile/Default)
  20. endef
  21. define Host/Uninstall
  22. -$(call Host/Compile/Default,uninstall)
  23. endef
  24. $(eval $(call HostBuild))