repo/extra/python/build

13 lines
185 B
Plaintext
Raw Normal View History

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