# HG changeset patch # User John W. Eaton # Date 1369933924 14400 # Node ID b994e523cfac1ffe0b6fddb2a4b4a2bbb6fe62d8 # Parent 7d692ab680abb05bf1ad27e9fc422845afbebae7 include texinfo in build tools diff -r 7d692ab680ab -r b994e523cfac index.html --- a/index.html Wed May 29 20:54:04 2013 -0400 +++ b/index.html Thu May 30 13:12:04 2013 -0400 @@ -1009,6 +1009,11 @@ pkg-config + texinfo + 5.1 + texinfo + + bzip2 1.0.6 bzip2 diff -r 7d692ab680ab -r b994e523cfac src/build-texinfo.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/build-texinfo.mk Thu May 30 13:12:04 2013 -0400 @@ -0,0 +1,23 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := build-texinfo +$(PKG)_IGNORE := +$(PKG)_CHECKSUM := ed5aa2b93910dde4eacd5d649329a49db701878c +$(PKG)_SUBDIR := texinfo-$($(PKG)_VERSION) +$(PKG)_FILE := texinfo-$($(PKG)_VERSION).tar.xz +$(PKG)_URL := ftp://ftp.gnu.org/pub/gnu/texinfo/$($(PKG)_FILE) +$(PKG)_DEPS := + +define $(PKG)_UPDATE + echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2; + echo $($(PKG)_VERSION) +endef + +define $(PKG)_BUILD + mkdir '$(1).build' + cd '$(1).build' && '$(1)/configure' \ + --prefix='$(PREFIX)' + $(MAKE) -C '$(1).build' -j '$(JOBS)' + $(MAKE) -C '$(1).build' -j 1 install +endef