core/libgmp/Pkgfile

19 lines
471 B
Plaintext
Raw Normal View History

2008-09-17 10:28:40 +02:00
# Description: Free library for arbitrary precision arithmetic
# URL: http://gmplib.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=libgmp
2008-09-22 15:58:01 +02:00
version=4.2.4
release=2
2008-09-17 10:28:40 +02:00
source=(ftp://ftp.gnu.org/gnu/gmp/gmp-$version.tar.bz2)
build() {
cd gmp-$version
ABI=32 ./configure --prefix=/usr \
--enable-cxx \
--build=i686-pc-linux-gnu
2008-09-17 10:28:40 +02:00
make
make DESTDIR=$PKG install
rm -r $PKG/usr/info
}