diff --git a/gmp/.footprint b/gmp/.footprint new file mode 100644 index 000000000..4a7060d44 --- /dev/null +++ b/gmp/.footprint @@ -0,0 +1,10 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/gmp.h +-rw-r--r-- root/root usr/include/gmpxx.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libgmp.a +-rwxr-xr-x root/root usr/lib/libgmp.la +lrwxrwxrwx root/root usr/lib/libgmp.so -> libgmp.so.3.3.3 +lrwxrwxrwx root/root usr/lib/libgmp.so.3 -> libgmp.so.3.3.3 +-rwxr-xr-x root/root usr/lib/libgmp.so.3.3.3 diff --git a/gmp/.md5sum b/gmp/.md5sum new file mode 100644 index 000000000..9aec1cab4 --- /dev/null +++ b/gmp/.md5sum @@ -0,0 +1 @@ +aa5e5fb3a7cdebe8c5b681a6cf4a670e gmp-4.1.4.tar.gz diff --git a/gmp/Pkgfile b/gmp/Pkgfile new file mode 100644 index 000000000..d13c1cf38 --- /dev/null +++ b/gmp/Pkgfile @@ -0,0 +1,20 @@ +# Description: a free library for arbitrary precision arithmetic +# URL: http://www.swox.com/gmp/ +# Maintainer: sten, nick dot steeves at shaw dot ca +# Packager: + +name=gmp +version=4.1.4 +release=1 +source=(ftp://ftp.gnu.org/gnu/gmp/gmp-$version.tar.gz) + +build() { + cd $name-$version + unset CFLAGS CXXFLAGS + ./configure --prefix=/usr \ + --enable-cxx + make + make DESTDIR=$PKG install + rm -rf $PKG/usr/info + +}