2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-15 20:32:26 +00:00
repo/extra/python/build

15 lines
213 B
Plaintext
Raw Normal View History

2019-06-25 15:24:27 +00:00
#!/bin/sh -e
2019-06-27 07:53:10 +00:00
rm -r Modules/zlib
rm -r Modules/expat
rm -r Modules/_ctypes/darwin*
rm -r Modules/_ctypes/libffi*
2019-06-25 15:24:27 +00:00
./configure \
2019-06-27 07:53:55 +00:00
--prefix=/usr
2019-06-25 15:24:27 +00:00
make
make DESTDIR="$1" install
2019-06-25 17:08:58 +00:00
ln -s python3 "$1/usr/bin/python"