Better python packaging

This commit is contained in:
Thomas Hobson 2021-02-19 18:53:26 +13:00
parent 51b06018c1
commit 4f3e7a536d
No known key found for this signature in database
GPG key ID: 9F1FD9D87950DB6F
6 changed files with 54 additions and 32 deletions

21
packages/python/base.mk Normal file
View file

@ -0,0 +1,21 @@
NAME=python
AUTHOR=Thomas Hobson <thomas@hexf.me>
DEPS=
#VERSION=
COMPILED=false
include ../../common.mk
run:
echo 'python$(shell grep -oP "\d+.\d+"<<<${VERSION}) $$*' > run
python-${VERSION}/environment:
echo 'export PATH=$$PWD/${NAME}-${VERSION}/bin:$$PATH' > $@
python-${VERSION}/: Python-${VERSION}/
cd $< && ./configure --prefix /
$(MAKE) -j$(or ${MAKE_JOBS},64) -C $<
DESTDIR=../$@ $(MAKE) -j$(or ${MAKE_JOBS},64) -C $< altinstall || true
Python-${VERSION}.tgz:
curl "https://www.python.org/ftp/python/${VERSION}/$@" -o $@