core/mpdecimal/Pkgfile

21 lines
474 B
Plaintext
Raw Normal View History

# Description: Package for correctly-rounded arbitrary precision decimal floating point arithmetic.
2021-12-13 12:03:15 +01:00
# URL: https://www.bytereef.org/mpdecimal/index.html
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=mpdecimal
2021-02-19 18:08:19 +01:00
version=2.5.1
release=1
2021-12-13 12:03:15 +01:00
source=(https://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
}