mirror of
https://github.com/emmett1/lfs-scripts.git
synced 2026-01-12 07:57:01 +00:00
13 lines
267 B
Plaintext
Executable File
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
|
|
}
|