2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-09-12 07:40:13 +00:00
repo/extra/python/build

13 lines
185 B
Plaintext
Raw Normal View History

2019-06-25 15:24:27 +00:00
#!/bin/sh -e
2019-06-25 16:19:34 +00:00
# Force system libs
rm -r Modules/_ctypes/darwin* \
Modules/_ctypes/libffi*
2019-06-25 15:24:27 +00:00
./configure \
2019-06-25 16:19:34 +00:00
--prefix=/usr \
--with-system-ffi
2019-06-25 15:24:27 +00:00
make
make DESTDIR="$1" install