comparison src/texinfo.mk @ 3475:81544b3fe0ca

update to texinfo 5.2
author John W. Eaton <jwe@octave.org>
date Fri, 31 Jan 2014 11:47:59 -0500
parents cf6f40cededb
children 13be64f9f16d
comparison
equal deleted inserted replaced
3474:90e45130eab8 3475:81544b3fe0ca
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 := texinfo 4 PKG := texinfo
5 $(PKG)_IGNORE := 5 $(PKG)_IGNORE :=
6 $(PKG)_CHECKSUM := a1533cf8e03ea4fa6c443b73f4c85e4da04dead0 6 $(PKG)_CHECKSUM := fbbc35c5857d11d1164c8445c78b66ad6d472072
7 $(PKG)_SUBDIR := $(PKG)-4.13 7 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
8 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz 8 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.xz
9 $(PKG)_URL := ftp://ftp.gnu.org/gnu/texinfo/$($(PKG)_FILE) 9 $(PKG)_URL := ftp://ftp.gnu.org/gnu/texinfo/$($(PKG)_FILE)
10 $(PKG)_DEPS := # libgnurx 10 $(PKG)_DEPS := # libgnurx
11 11
12 define $(PKG)_UPDATE 12 define $(PKG)_UPDATE
13 echo 'Warning: Updates are temporarily disabled for package texinfo.' >&2; 13 echo 'Warning: Updates are temporarily disabled for package texinfo.' >&2;
14 echo $(texinfo_VERSION) 14 echo $(texinfo_VERSION)
15 endef 15 endef
16 16
17 define $(PKG)_BUILD 17 define $(PKG)_BUILD
18 mkdir '$(1)/.build' 18 mkdir '$(1).build'
19 cd '$(1)/.build' && '$(1)/configure' \ 19 cd '$(1).build' && '$(1)/configure' \
20 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \ 20 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
21 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \ 21 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
22 --prefix='$(HOST_PREFIX)' 22 --prefix='$(HOST_PREFIX)'
23 23
24 ## All we need for Octave is makeinfo. 24 for d in gnulib/lib install-info tp util; do \
25 $(MAKE) -C '$(1)/.build/lib' -j '$(JOBS)' 25 $(MAKE) -C '$(1).build' -C $$d -j '$(JOBS)'; \
26 $(MAKE) -C '$(1)/.build/gnulib/lib' -j '$(JOBS)' 26 done
27 $(MAKE) -C '$(1)/.build/makeinfo' -j '$(JOBS)' install DESTDIR='$(3)' 27 for d in gnulib/lib install-info tp util; do \
28 $(MAKE) -C '$(1).build' -C $$d -j '$(JOBS)' install DESTDIR='$(3)'; \
29 done
28 endef 30 endef