23 lines
513 B
Makefile
23 lines
513 B
Makefile
|
NAME=python
|
||
|
AUTHOR=Thomas Hobson <thomas@hexf.me>
|
||
|
DEPENDENCIES=
|
||
|
COMPILED=false
|
||
|
VERSIONS=2.7.1 3.5.1 3.9.1
|
||
|
|
||
|
include common.mk
|
||
|
|
||
|
|
||
|
${RUN_FILE}:
|
||
|
echo 'python${VERSION_MINOR} $$*' > $@
|
||
|
|
||
|
${ENV_FILE}:
|
||
|
echo 'export PATH=$$PWD/bin:$$PATH' > $@
|
||
|
|
||
|
${BIN_DIR}: ${BUILD_DIR}Python-${VERSION}/
|
||
|
cd $< && ./configure --prefix /
|
||
|
$(MAKE) -j64 -C $<
|
||
|
DESTDIR=../${PKG_SLUG} $(MAKE) -j64 -C $< altinstall || true
|
||
|
|
||
|
${BUILD_DIR}Python-${VERSION}.tgz:
|
||
|
curl "https://www.python.org/ftp/python/${VERSION}/Python-${VERSION}.tgz" -o $@
|