mpdecimal: moved from opt to core, dependency of python3

This commit is contained in:
Juergen Daubert 2020-06-26 12:06:32 +00:00
parent 29fa4cab75
commit a18f2c0ba9
3 changed files with 33 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

5
mpdecimal/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqtdyXQXLcXoDeqTrZvuDIXF8v2JW+vjsmMUBJbYaMPlodWvSqN/pk1jWQQrPf1M9eVWnP49s+loItTLGk0o3wgU=
SHA256 (Pkgfile) = fba2ce4b25634ee2910c1038e8afa132574735f5c72d46f6f1e5a648aeee24ec
SHA256 (.footprint) = 416b3c27022e8888b8893b42e6c7d9cd1f9e930ebf3449479bc8cdc8186f77b9
SHA256 (mpdecimal-2.4.2.tar.gz) = 83c628b90f009470981cf084c5418329c88b19835d8af3691b930afccb7d79c7

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: CRUX System Team, core-ports at crux dot nu
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
}