eth0s/ports/core/mpc/Pkgfile

19 lines
478 B
Text
Raw Normal View History

# Description: A library for the arithmetic of complex numbers with arbitrarily high precision and correct rounding of the result
# URL:
2019-11-10 23:58:56 +08:00
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
# Depends on:
name=mpc
version=1.1.0
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
}