Files
lfs-script_s/toolchain/24-python
2020-11-13 13:58:01 +08:00

13 lines
267 B
Plaintext
Executable File

name=python
version=3.9.0
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
}