annotate src/build-texinfo.mk @ 4123:28a83a566666

texinfo: update to v6.0 (Bug #46637) * Makefile.in: include msys-perl, msys-libcrypt when installing mingw * src/build-texinfo.mk: update version, checksum, build sequence * src/texinfo.mk: update version, checksum, build sequence * src/mingw-texinfo-1-fixes.patch: update patch * src/build-texinfo-1-fixes.patch: removed * src/texinfo-1-fixes.patch: removed * dist-files.mk: removed ref to build-texinfo-1-fixes.patch, texinfo-1-fixes.patch
author John Donoghue
date Fri, 11 Dec 2015 13:18:42 -0500
parents 8d5ea2642115
children 0e56fe2d2ef5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3004
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := build-texinfo
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
4123
28a83a566666 texinfo: update to v6.0 (Bug #46637)
John Donoghue
parents: 3493
diff changeset
6 $(PKG)_VERSION := 6.0
28a83a566666 texinfo: update to v6.0 (Bug #46637)
John Donoghue
parents: 3493
diff changeset
7 $(PKG)_CHECKSUM := 110d45256c4219c88dc2fdb8c9c1a20749e4e7c5
28a83a566666 texinfo: update to v6.0 (Bug #46637)
John Donoghue
parents: 3493
diff changeset
8 $(PKG)_SUBDIR := texinfo-$($(PKG)_VERSION)
3493
8d5ea2642115 back down to texinfo 4.3
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
9 $(PKG)_FILE := texinfo-$($(PKG)_VERSION).tar.gz
3007
229ab69bba2d use texinfo 4.13a for build-texinfo package
John W. Eaton <jwe@octave.org>
parents: 3004
diff changeset
10 $(PKG)_URL := ftp://ftp.gnu.org/gnu/texinfo/$($(PKG)_FILE)
3004
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 $(PKG)_DEPS :=
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 define $(PKG)_UPDATE
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 echo $($(PKG)_VERSION)
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 endef
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 define $(PKG)_BUILD
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 mkdir '$(1).build'
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 cd '$(1).build' && '$(1)/configure' \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 3008
diff changeset
21 --prefix='$(BUILD_TOOLS_PREFIX)'
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 3008
diff changeset
22
3493
8d5ea2642115 back down to texinfo 4.3
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
23 $(MAKE) -C '$(1).build/gnulib/lib' -j '$(JOBS)'
8d5ea2642115 back down to texinfo 4.3
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
24 $(MAKE) -C '$(1).build/util' -j '$(JOBS)'
4123
28a83a566666 texinfo: update to v6.0 (Bug #46637)
John Donoghue
parents: 3493
diff changeset
25 $(MAKE) -C '$(1).build/tp' -j '$(JOBS)'
3493
8d5ea2642115 back down to texinfo 4.3
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
26
8d5ea2642115 back down to texinfo 4.3
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
27 $(MAKE) -C '$(1).build/gnulib/lib' -j 1 install DESTDIR='$(3)'
8d5ea2642115 back down to texinfo 4.3
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
28 $(MAKE) -C '$(1).build/util' -j 1 install DESTDIR='$(3)'
4123
28a83a566666 texinfo: update to v6.0 (Bug #46637)
John Donoghue
parents: 3493
diff changeset
29 $(MAKE) -C '$(1).build/tp' -j 1 install DESTDIR='$(3)'
3004
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30 endef