compat-32/libffi-32/Pkgfile

23 lines
446 B
Plaintext
Raw Normal View History

# Description: Portable Foreign Function Interface Library
# URL: http://sourceware.org/libffi/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
name=libffi-32
2014-11-15 03:50:50 +01:00
version=3.2
release=1
source=(ftp://sourceware.org/pub/libffi/libffi-$version.tar.gz)
build() {
2014-11-15 03:50:50 +01:00
cd libffi-$version
2014-11-15 03:50:50 +01:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
--mandir=/usr/man
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{man,share}
}