18 lines
430 B
Text
Executable file
18 lines
430 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:
|
|
# 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
|
|
}
|