annotate src/build-texinfo.mk @ 3007:229ab69bba2d

use texinfo 4.13a for build-texinfo package
author John W. Eaton <jwe@octave.org>
date Thu, 30 May 2013 14:54:37 -0400
parents b994e523cfac
children aa4a0ace032d
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 :=
3007
229ab69bba2d use texinfo 4.13a for build-texinfo package
John W. Eaton <jwe@octave.org>
parents: 3004
diff changeset
6 $(PKG)_CHECKSUM := a1533cf8e03ea4fa6c443b73f4c85e4da04dead0
229ab69bba2d use texinfo 4.13a for build-texinfo package
John W. Eaton <jwe@octave.org>
parents: 3004
diff changeset
7 $(PKG)_SUBDIR := $(PKG)-4.13
229ab69bba2d use texinfo 4.13a for build-texinfo package
John W. Eaton <jwe@octave.org>
parents: 3004
diff changeset
8 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
229ab69bba2d use texinfo 4.13a for build-texinfo package
John W. Eaton <jwe@octave.org>
parents: 3004
diff changeset
9 $(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
10 $(PKG)_DEPS :=
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 define $(PKG)_UPDATE
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 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
14 echo $($(PKG)_VERSION)
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 endef
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 define $(PKG)_BUILD
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 mkdir '$(1).build'
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 cd '$(1).build' && '$(1)/configure' \
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 --prefix='$(PREFIX)'
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 $(MAKE) -C '$(1).build' -j '$(JOBS)'
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 $(MAKE) -C '$(1).build' -j 1 install
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 endef