2008-10-09 05:50:03 +08:00
|
|
|
#
|
2013-12-17 10:47:13 +08:00
|
|
|
# Copyright (C) 2006-2013 OpenWrt.org
|
2007-12-25 08:27:32 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=automake
|
2013-12-17 10:47:13 +08:00
|
|
|
PKG_VERSION:=1.11.6
|
2007-12-25 08:27:32 +08:00
|
|
|
|
2012-04-03 00:25:28 +08:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
2007-12-25 08:27:32 +08:00
|
|
|
PKG_SOURCE_URL:=@GNU/automake
|
2013-12-17 10:47:13 +08:00
|
|
|
PKG_MD5SUM:=cf4752287ad708f83bd3689da57a32c9
|
2007-12-25 08:27:32 +08:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
|
2012-01-15 19:43:13 +08:00
|
|
|
HOST_CONFIGURE_ARGS += --datarootdir=$(STAGING_DIR_HOST)/share
|
2012-02-01 23:06:36 +08:00
|
|
|
HOST_CONFIGURE_VARS += am_cv_prog_PERL_ithreads=no
|
2007-12-25 08:27:32 +08:00
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Install
|
|
|
|
$(MAKE) -C $(HOST_BUILD_DIR) install
|
2008-10-09 05:50:03 +08:00
|
|
|
mv $(STAGING_DIR_HOST)/bin/aclocal $(STAGING_DIR_HOST)/bin/aclocal.real
|
|
|
|
$(INSTALL_BIN) ./files/aclocal $(STAGING_DIR_HOST)/bin
|
2012-01-28 11:51:22 +08:00
|
|
|
ln -sf aclocal $(STAGING_DIR_HOST)/bin/aclocal-1.9
|
|
|
|
ln -sf aclocal $(STAGING_DIR_HOST)/bin/aclocal-1.10
|
|
|
|
ln -sf aclocal $(STAGING_DIR_HOST)/bin/aclocal-1.11
|
2013-12-17 10:47:13 +08:00
|
|
|
ln -sf aclocal $(STAGING_DIR_HOST)/bin/aclocal-1.11.6
|
2007-12-25 08:27:32 +08:00
|
|
|
endef
|
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Clean
|
2009-05-09 04:44:47 +08:00
|
|
|
-$(MAKE) -C $(HOST_BUILD_DIR) uninstall
|
2009-02-22 12:37:20 +08:00
|
|
|
$(call Host/Clean/Default)
|
2007-12-25 08:27:32 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|