mirror of
https://codeberg.org/kiss-community/repo
synced 2025-01-08 10:40:17 -07:00
13 lines
185 B
Bash
Executable File
13 lines
185 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Force system libs
|
|
rm -r Modules/_ctypes/darwin* \
|
|
Modules/_ctypes/libffi*
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-system-ffi
|
|
|
|
make
|
|
make DESTDIR="$1" install
|