tools: refresh patches for tools
[openwrt/svn-archive/archive.git] / tools / autoconf / Makefile
1 #
2 # Copyright (C) 2006 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
9 PKG_NAME:=autoconf
10 PKG_VERSION:=2.62
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
13 PKG_SOURCE_URL:=@GNU/autoconf
14 PKG_MD5SUM:=e1fb8fe0b22e651240afdfa2be537a3c
15
16 include $(INCLUDE_DIR)/host-build.mk
17
18 define Build/Configure
19 $(call Build/Configure/Default,\
20 --datarootdir=$(STAGING_DIR_HOST)/share \
21 )
22 endef
23
24 define Build/Compile
25 export SHELL="$(BASH)"; $(MAKE) -C $(PKG_BUILD_DIR)
26 endef
27
28 define Build/Install
29 export SHELL="$(BASH)"; $(MAKE) -C $(PKG_BUILD_DIR) install
30 endef
31
32 define Build/Clean
33 export SHELL="$(BASH)"; $(MAKE) -C $(PKG_BUILD_DIR) uninstall
34 $(call Build/Clean/Default)
35 endef
36
37 $(eval $(call HostBuild))