diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-04-24 01:01:56 +0200 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-04-24 01:01:56 +0200 |
commit | 653577ab7981680cc89fa860f28415bde47b5fd6 (patch) | |
tree | cf0489aef25bd754578af7cb1193440ee51e8a86 /base | |
parent | 02a9d17d2bc60288e56440e5f325c76e90cef942 (diff) | |
download | nutyx-pakxe-653577ab7981680cc89fa860f28415bde47b5fd6.tar.gz nutyx-pakxe-653577ab7981680cc89fa860f28415bde47b5fd6.tar.bz2 nutyx-pakxe-653577ab7981680cc89fa860f28415bde47b5fd6.tar.xz nutyx-pakxe-653577ab7981680cc89fa860f28415bde47b5fd6.zip |
ajout de libmpc#0.8.1-1
Diffstat (limited to 'base')
-rw-r--r-- | base/libmpc/.footprint | 12 | ||||
-rw-r--r-- | base/libmpc/.md5sum | 1 | ||||
-rw-r--r-- | base/libmpc/Pkgfile | 19 |
3 files changed, 32 insertions, 0 deletions
diff --git a/base/libmpc/.footprint b/base/libmpc/.footprint new file mode 100644 index 000000000..19fe74c0d --- /dev/null +++ b/base/libmpc/.footprint @@ -0,0 +1,12 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/mpc.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libmpc.a +-rwxr-xr-x root/root usr/lib/libmpc.la +lrwxrwxrwx root/root usr/lib/libmpc.so -> libmpc.so.2.0.0 +lrwxrwxrwx root/root usr/lib/libmpc.so.2 -> libmpc.so.2.0.0 +-rwxr-xr-x root/root usr/lib/libmpc.so.2.0.0 +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/info/ +-rw-r--r-- root/root usr/share/info/mpc.info.gz diff --git a/base/libmpc/.md5sum b/base/libmpc/.md5sum new file mode 100644 index 000000000..11685f361 --- /dev/null +++ b/base/libmpc/.md5sum @@ -0,0 +1 @@ +5b34aa804d514cc295414a963aedb6bf mpc-0.8.1.tar.gz diff --git a/base/libmpc/Pkgfile b/base/libmpc/Pkgfile new file mode 100644 index 000000000..9207e4c13 --- /dev/null +++ b/base/libmpc/Pkgfile @@ -0,0 +1,19 @@ +# Description: Librairie pour le calcul arithmétique de nombres complexes avec une haute précision +# URL: http://www.mpfr.org/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch + +name=libmpc +version=0.8.1 +release=1 +source=(http://www.multiprecision.org/mpc/download/mpc-$version.tar.gz) +build() { + cd mpc-$version + ./configure --prefix=/usr + make + make DESTDIR=$PKG install + # Remove the dir file + if [ -f $PKG/usr/share/info/dir ]; then + rm $PKG/usr/share/info/dir + fi +} |