annotate src/build-texinfo.mk @ 3293:cf6f40cededb

Support file list generation in packages. For the following modules: - arpack - blas - build-autoconf - build-automake - build-cmake - build-gperf - build-libtool - build-msvctools - build-pkg-config - build-texinfo - bzip2 - curl - dbus - expat - fftw - fltk - fontconfig - freetype - gettext - glpk - gmp - gnuplot - gnutls - graphicsmagick - hdf5 - jasper - jpeg - lapack - lcms - libgcrypt - libgpg_error - libiconv - libidn - libpng - libssh2 - libxml2 - ncurses - nettle - openssl - pcre - pstoedit - zlib - qhull - qrupdate - qscintilla - qt - readline - suitesparse - texinfo - tiff
author Michael Goffioul <michael.goffioul@gmail.com>
date Sat, 09 Nov 2013 23:28:04 -0500
parents 100e618349f7
children 81544b3fe0ca
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
3008
aa4a0ace032d fix texinfo subdir name and file name for build-texinfo package
John W. Eaton <jwe@octave.org>
parents: 3007
diff changeset
7 $(PKG)_SUBDIR := texinfo-4.13
aa4a0ace032d fix texinfo subdir name and file name for build-texinfo package
John W. Eaton <jwe@octave.org>
parents: 3007
diff changeset
8 $(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
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' \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 3008
diff changeset
20 --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
21
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 3008
diff changeset
22 $(MAKE) -C '$(1).build/gnulib/lib' -j '$(JOBS)'
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 3008
diff changeset
23 $(MAKE) -C '$(1).build/lib' -j '$(JOBS)'
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 3008
diff changeset
24 $(MAKE) -C '$(1).build/makeinfo' -j '$(JOBS)'
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 3008
diff changeset
25 $(MAKE) -C '$(1).build/util' -j '$(JOBS)'
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 3008
diff changeset
26
3293
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3012
diff changeset
27 $(MAKE) -C '$(1).build/gnulib/lib' -j 1 install DESTDIR='$(3)'
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3012
diff changeset
28 $(MAKE) -C '$(1).build/lib' -j 1 install DESTDIR='$(3)'
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3012
diff changeset
29 $(MAKE) -C '$(1).build/makeinfo' -j 1 install DESTDIR='$(3)'
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3012
diff changeset
30 $(MAKE) -C '$(1).build/util' -j 1 install DESTDIR='$(3)'
3004
b994e523cfac include texinfo in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 endef