2021-12-13 12:12:37 +01:00
|
|
|
# Description: C library for the arithmetic of complex numbers
|
|
|
|
# URL: http://www.multiprecision.org/
|
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
# Depends on: libmpfr
|
2010-06-03 10:03:35 +00:00
|
|
|
|
|
|
|
name=libmpc
|
2022-12-17 11:03:28 +01:00
|
|
|
version=1.3.1
|
2010-06-03 10:03:35 +00:00
|
|
|
release=1
|
2018-01-14 14:33:02 +01:00
|
|
|
source=(https://ftp.gnu.org/gnu/mpc/mpc-$version.tar.gz)
|
2010-06-03 10:03:35 +00:00
|
|
|
|
|
|
|
build() {
|
2021-12-13 12:12:37 +01:00
|
|
|
cd mpc-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share
|
2010-06-03 10:03:35 +00:00
|
|
|
}
|