2019-06-25 09:24:27 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
./configure \
|
2019-06-27 03:10:08 -06:00
|
|
|
--prefix=/usr \
|
2019-08-19 20:17:24 -06:00
|
|
|
--without-ensurepip
|
2019-06-25 09:24:27 -06:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="$1" install
|
2019-06-25 11:08:58 -06:00
|
|
|
|
|
|
|
ln -s python3 "$1/usr/bin/python"
|