2019-07-23 07:15:56 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--with-pic
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="$1" install
|
2019-11-24 02:37:51 -07:00
|
|
|
|
2019-11-24 02:56:39 -07:00
|
|
|
# Maintain compatibility and avoid the need
|
|
|
|
# for rebuilds of all packages linking to
|
|
|
|
# libffi.
|
2019-11-24 06:52:11 -07:00
|
|
|
#
|
|
|
|
# ABI incompatibility only affects AArch64.
|
|
|
|
# See: https://github.com/libffi/libffi/commit/c02c341
|
|
|
|
# https://github.com/libffi/libffi/issues/528
|
2019-11-24 02:56:39 -07:00
|
|
|
ln -s libffi.so.7 "$1/usr/lib/libffi.so.6"
|