comparison src/build-automake.mk @ 4545:0e56fe2d2ef5

Makefile.in: add update-build-tools target * Makefile.in: add update-build-tools target * src/build-autoconf.mk, src/build-automake.mk, src/build-bison.mk, src/build-gawk.mk, src/build-gcc.mk, src/build-gettext.mk, src/build-gperf.mk, src/build-m4.mk, src/build-texinfo.mk, src/build-libtool.mk : update PKG_UPDATE for getting latest version from gnu.org * src/build-cmake.mk, src/build-flex.mk, src/build-lzip.mk, src/build-pkg-config.mk, src/pkg-config.mk, src/build-scons.mk : add implemented PKG_UPDATE macro
author John Donoghue <john.donoghue@ieee.org>
date Thu, 23 Nov 2017 12:05:29 -0500
parents 13be64f9f16d
children 5c5e89e72b74
comparison
equal deleted inserted replaced
4544:abef069ac1d3 4545:0e56fe2d2ef5
1 # This file is part of MXE. 1 # This file is part of MXE.
2 # See index.html for further information. 2 # See index.html for further information.
3 3
4 PKG := build-automake 4 PKG := build-automake
5 $(PKG)_IGNORE := 5 $(PKG)_IGNORE :=
6 $(PKG)_VERSION := 1.11.6 6 $(PKG)_VERSION := 1.15.1
7 $(PKG)_CHECKSUM := 29d7832b148e2157e03ad0d3620fbb7f5a13bc21 7 $(PKG)_CHECKSUM := 29d7832b148e2157e03ad0d3620fbb7f5a13bc21
8 $(PKG)_SUBDIR := automake-$($(PKG)_VERSION) 8 $(PKG)_SUBDIR := automake-$($(PKG)_VERSION)
9 $(PKG)_FILE := automake-$($(PKG)_VERSION).tar.gz 9 $(PKG)_FILE := automake-$($(PKG)_VERSION).tar.gz
10 $(PKG)_URL := ftp://ftp.gnu.org/pub/gnu/automake/$($(PKG)_FILE) 10 $(PKG)_URL := ftp://ftp.gnu.org/pub/gnu/automake/$($(PKG)_FILE)
11 $(PKG)_DEPS := build-autoconf 11 $(PKG)_DEPS := build-autoconf
12 12
13 define $(PKG)_UPDATE 13 define $(PKG)_UPDATE
14 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2; 14 $(WGET) -q -O- 'http://ftp.gnu.org/gnu/automake/?C=M;O=D' | \
15 echo $($(PKG)_VERSION) 15 $(SED) -n 's,.*<a href="automake-\([0-9\.]*\)\.tar.*,\1,p' | \
16 $(SORT) -V | \
17 tail -1
16 endef 18 endef
17 19
18 define $(PKG)_BUILD 20 define $(PKG)_BUILD
19 mkdir '$(1).build' 21 mkdir '$(1).build'
20 cd '$(1).build' && '$(1)/configure' \ 22 cd '$(1).build' && '$(1)/configure' \