repo/extra/python/build

20 lines
351 B
Plaintext
Raw Normal View History

2019-06-25 15:24:27 +00:00
#!/bin/sh -e
patch -p1 < python3-always-pip.patch
2019-06-25 15:24:27 +00:00
./configure \
2019-06-27 09:10:08 +00:00
--prefix=/usr \
--enable-shared \
--with-system-expat \
--with-system-ffi \
--with-ensurepip=yes
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"
2019-08-28 18:55:53 +00:00
ln -s pip3 "$1/usr/bin/pip"
2019-08-30 00:31:47 +00:00
# Make static library writable.
chmod -v u+w "$1/usr/lib/libpython"*