Files
alfs/toolchain/python.sh
2021-01-10 06:38:21 -08:00

18 lines
229 B
Bash
Executable File

#!/bin/bash
cd /sources/
tar xvf Python-3.8.5.tar.xz
cd Python-3.8.5
./configure --prefix=/usr \
--enable-shared \
--without-ensurepip
make
make install
cd /sources/
rm -rf Python-3.8.5
echo "Done"