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:53:55 +03:00

15 lines
213 B
Bash
Executable File

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