compat-32/libgmp-32/Pkgfile

27 lines
510 B
Plaintext
Raw Normal View History

# Description: Free library for arbitrary precision arithmetic
# URL: https://gmplib.org/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
name=libgmp-32
2020-01-23 10:07:03 +01:00
version=6.2.0
2016-06-26 07:55:18 +02:00
release=1
source=(https://gmplib.org/download/gmp/gmp-$version.tar.xz)
build() {
2016-03-28 02:00:33 +02:00
cd gmp-$version
2016-03-28 02:00:33 +02:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
--enable-cxx \
--build=i686-pc-linux-gnu
2016-03-28 02:00:33 +02:00
make
make DESTDIR=$PKG install
2016-03-28 02:00:33 +02:00
mv $PKG/usr/include/gmp{,-32}.h
rm $PKG/usr/include/gmpxx.h
2016-03-28 02:00:33 +02:00
rm -r $PKG/usr/share
}