blob: d933c712b41df0e260a72e47116746bcfd34944a [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
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#
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:=autoconf
10PKG_VERSION:=2.71
11
12PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
13PKG_SOURCE_URL:=@GNU/autoconf
14PKG_HASH:=431075ad0bf529ef13cb41e9042c542381103e80015686222b8a9d4abef42a1c
15
16include $(INCLUDE_DIR)/host-build.mk
17
18HOST_CONFIGURE_VARS += \
19 EMACS="no" \
20 PERL="/usr/bin/env perl"
21
22define Host/Compile
23 -$(call Host/Compile/Default,--touch install-man1) # disable building of man pages
24 $(call Host/Compile/Default)
25endef
26
27define Host/Uninstall
28 -$(call Host/Compile/Default,uninstall)
29endef
30
31$(eval $(call HostBuild))