2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-08 00:42:28 +00:00
repo/extra/libffi/build

14 lines
235 B
Plaintext
Raw Normal View History

2019-07-23 13:15:56 +00:00
#!/bin/sh -e
./configure \
--prefix=/usr \
--with-pic
make
make DESTDIR="$1" install
2019-11-24 09:37:51 +00:00
2019-11-24 09:56:39 +00:00
# Maintain compatibility and avoid the need
# for rebuilds of all packages linking to
# libffi.
ln -s libffi.so.7 "$1/usr/lib/libffi.so.6"