mirror of
https://codeberg.org/kiss-community/repo
synced 2025-03-06 12:29:56 -07:00
14 lines
235 B
Bash
Executable File
14 lines
235 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-pic
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# 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"
|