1
0
forked from ports/opt

gmp: initial import

This commit is contained in:
Nick Steeves 2005-12-25 09:54:49 +00:00
parent 3c4ce49a0f
commit 931b65f999
3 changed files with 31 additions and 0 deletions

10
gmp/.footprint Normal file
View File

@ -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

1
gmp/.md5sum Normal file
View File

@ -0,0 +1 @@
aa5e5fb3a7cdebe8c5b681a6cf4a670e gmp-4.1.4.tar.gz

20
gmp/Pkgfile Normal file
View File

@ -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
}