[notify] mpdecimal: initial import for python3

This commit is contained in:
Danny Rawlins 2017-02-12 19:05:07 +11:00
parent 1fca0ac74b
commit c3a28574dd
3 changed files with 29 additions and 0 deletions

8
mpdecimal/.footprint Normal file
View File

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

1
mpdecimal/.md5sum Normal file
View File

@ -0,0 +1 @@
aa63cab5d06a96855a44da2db90a29d9 mpdecimal-2.4.2.tar.gz

20
mpdecimal/Pkgfile Normal file
View File

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