# HG changeset patch # User John W. Eaton # Date 1390507753 18000 # Node ID f0a1b0872dbba08ea148cec783c21272d31ebe27 # Parent 690a00576e5e5423c2c1637b6749681c1032aac7 build-python: New build tool package. diff -r 690a00576e5e -r f0a1b0872dbb Makefile.in --- a/Makefile.in Thu Jan 23 12:44:22 2014 -0500 +++ b/Makefile.in Thu Jan 23 15:09:13 2014 -0500 @@ -160,11 +160,6 @@ REQUIREMENTS += bsdtar endif -# if we want jit (llvm) we need python -ifeq ($(ENABLE_JIT),yes) - REQUIREMENTS += python -endif - LIBTOOL := libtool LIBTOOLIZE := libtoolize diff -r 690a00576e5e -r f0a1b0872dbb index.html --- a/index.html Thu Jan 23 12:44:22 2014 -0500 +++ b/index.html Thu Jan 23 15:09:13 2014 -0500 @@ -1042,6 +1042,11 @@ pkg-config + python + 2.7.6 + python + + texinfo 4.13a texinfo diff -r 690a00576e5e -r f0a1b0872dbb src/build-python.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/build-python.mk Thu Jan 23 15:09:13 2014 -0500 @@ -0,0 +1,23 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := build-python +$(PKG)_IGNORE := +$(PKG)_CHECKSUM := 8328d9f1d55574a287df384f4931a3942f03da64 +$(PKG)_SUBDIR := Python-$($(PKG)_VERSION) +$(PKG)_FILE := Python-$($(PKG)_VERSION).tgz +$(PKG)_URL := http://www.python.org/ftp/python/2.7.6/$($(PKG)_FILE) +$(PKG)_DEPS := build-gcc + +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='$(BUILD_TOOLS_PREFIX)' + $(MAKE) -C '$(1).build' -j '$(JOBS)' + $(MAKE) -C '$(1).build' -j 1 install +endef