diff --git a/mpdecimal/.footprint b/mpdecimal/.footprint new file mode 100644 index 000000000..759e22dda --- /dev/null +++ b/mpdecimal/.footprint @@ -0,0 +1,8 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/mpdecimal.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libmpdec.a +lrwxrwxrwx root/root usr/lib/libmpdec.so -> libmpdec.so.2.4.2 +lrwxrwxrwx root/root usr/lib/libmpdec.so.2 -> libmpdec.so.2.4.2 +-rwxr-xr-x root/root usr/lib/libmpdec.so.2.4.2 diff --git a/mpdecimal/.md5sum b/mpdecimal/.md5sum new file mode 100644 index 000000000..280136d2a --- /dev/null +++ b/mpdecimal/.md5sum @@ -0,0 +1 @@ +aa63cab5d06a96855a44da2db90a29d9 mpdecimal-2.4.2.tar.gz diff --git a/mpdecimal/Pkgfile b/mpdecimal/Pkgfile new file mode 100644 index 000000000..2339ed488 --- /dev/null +++ b/mpdecimal/Pkgfile @@ -0,0 +1,20 @@ +# Description: Package for correctly-rounded arbitrary precision decimal floating point arithmetic. +# URL: http://www.bytereef.org/mpdecimal/index.html +# Maintainer: Danny Rawlins, crux at romster dot me + +name=mpdecimal +version=2.4.2 +release=1 +source=(http://www.bytereef.org/software/$name/releases/$name-$version.tar.gz) + +build() { + cd $name-$version + + ./configure --prefix=/usr + + make + make DESTDIR=$PKG install + + rm -r $PKG/usr/share/doc + rmdir $PKG/usr/share +}