eth0s/ports/core/mpc/Pkgfile
2020-11-13 13:58:01 +08:00

18 lines
478 B
Text
Executable file

# Description: A library for the arithmetic of complex numbers with arbitrarily high precision and correct rounding of the result
# URL:
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
# Depends on:
name=mpc
version=1.2.1
release=1
source=(https://ftp.gnu.org/gnu/mpc/mpc-$version.tar.gz)
build() {
cd mpc-$version
./configure --prefix=/usr \
--disable-static
make
make DESTDIR=$PKG install
}