2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 16:32:28 +00:00
repo/extra/python/build
2019-06-27 10:56:52 +03:00

15 lines
217 B
Bash
Executable File

#!/bin/sh -e
rm -rf Modules/zlib
rm -rf Modules/expat
rm -rf Modules/_ctypes/darwin*
rm -rf Modules/_ctypes/libffi*
./configure \
--prefix=/usr
make
make DESTDIR="$1" install
ln -s python3 "$1/usr/bin/python"