2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/extra/python/build
2020-02-08 01:55:12 +02:00

26 lines
432 B
Bash
Executable File

#!/bin/sh -e
patch -p1 < python3-always-pip.patch
# Remove util-linux dependency.
cat >> Modules/Setup <<EOF
*disabled*
_uuid
EOF
./configure \
--prefix=/usr \
--enable-shared \
--with-system-expat \
--with-system-ffi \
--with-ensurepip=yes
make
make DESTDIR="$1" install
ln -s python3 "$1/usr/bin/python"
ln -s pip3 "$1/usr/bin/pip"
# Make static library writable.
chmod -v u+w "$1/usr/lib/libpython"*