annotate src/build-texinfo.mk @ 3480:13be64f9f16d

move version info from index.html to src/*.mk files
author John W. Eaton <jwe@octave.org>
date Fri, 31 Jan 2014 16:04:01 -0500
parents 81544b3fe0ca
children 8d5ea2642115
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 :=
3480
13be64f9f16d move version info from index.html to src/*.mk files
John W. Eaton <jwe@octave.org>
parents: 3475
diff changeset
6 $(PKG)_VERSION := 5.2
3475
81544b3fe0ca update to texinfo 5.2
John W. Eaton <jwe@octave.org>
parents: 3293
diff changeset
7 $(PKG)_CHECKSUM := fbbc35c5857d11d1164c8445c78b66ad6d472072
81544b3fe0ca update to texinfo 5.2
John W. Eaton <jwe@octave.org>
parents: 3293
diff changeset
8 $(PKG)_SUBDIR := texinfo-$($(PKG)_VERSION)
81544b3fe0ca update to texinfo 5.2
John W. Eaton <jwe@octave.org>
parents: 3293
diff changeset
9 $(PKG)_FILE := texinfo-$($(PKG)_VERSION).tar.xz
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
3475
81544b3fe0ca update to texinfo 5.2
John W. Eaton <jwe@octave.org>
parents: 3293
diff changeset
23 $(MAKE) -C '$(1).build' -j '$(JOBS)'
81544b3fe0ca update to texinfo 5.2
John W. Eaton <jwe@octave.org>
parents: 3293
diff changeset
24 $(MAKE) -C '$(1).build' -j 1 install DESTDIR='$(3)'
3004
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 endef