mirror of
https://github.com/engineer-man/piston.git
synced 2025-05-11 14:16:27 +02:00
17 lines
246 B
Makefile
17 lines
246 B
Makefile
NAME=python
|
|
VERSION=3.9.1
|
|
AUTHOR=Thomas Hobson <thomas@hexf.me>
|
|
DEPS=
|
|
BINARY_FILES=
|
|
|
|
include ../../Makefile
|
|
|
|
bin:
|
|
|
|
Python-${VERSION}.tgz:
|
|
curl "https://www.python.org/ftp/python/${VERSION}/Python-${VERSION}.tgz" -O $@
|
|
|
|
%: %.tgz
|
|
tar xzvf $@
|
|
|
|
|