forked from ports/compat-32
26 lines
531 B
Plaintext
26 lines
531 B
Plaintext
# Description: Free library for arbitrary precision arithmetic
|
|
# URL: http://gmplib.org/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
|
|
name=libgmp-32
|
|
version=5.1.2
|
|
release=3
|
|
source=(ftp://ftp.gmplib.org/pub/gmp-$version/gmp-$version.tar.xz)
|
|
|
|
build() {
|
|
cd gmp-$version
|
|
|
|
ABI=32 ./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--enable-cxx
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
mv $PKG/usr/include/gmp{,-32}.h
|
|
rm $PKG/usr/include/gmpxx.h
|
|
|
|
rm -r $PKG/usr/share
|
|
}
|