13 lines
266 B
Text
13 lines
266 B
Text
![]() |
name=python
|
||
|
version=3.7.4
|
||
|
source=(https://www.python.org/ftp/python/$version/Python-$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
cd Python-$version
|
||
|
|
||
|
sed -i '/def add_multiarch_paths/a \ return' setup.py
|
||
|
./configure --prefix=/tools --without-ensurepip
|
||
|
make
|
||
|
make install
|
||
|
}
|