Package Details: libmpc09 0.9-1

Package Base: libmpc09
Description: Library for the arithmetic of complex numbers with arbitrarily high precision
Upstream URL: http://www.multiprecision.org/
Category: devel
Licenses: LGPL
Submitter: basinilya
Maintainer: basinilya
Last Packager: None
Votes: 6
First Submitted: 2012-09-09 12:02
Last Updated: 2013-02-14 08:46

Dependencies (1)

Required by (0)

Sources

Latest Comments

Comment by saironiq

2013-02-14 13:38

leniviy: nope, i just did what parallel-tests suggested when it failed -- and it worked. :)

Comment by basinilya

2013-02-14 08:38

saironiq: have you tried just adding "--install" to autoreconf?

Comment by saironiq

2013-02-13 13:53

build() fails with:

configure.ac:93: the top level
parallel-tests: error: required file './test-driver' not found
parallel-tests: 'automake --add-missing' can install 'test-driver'
autoreconf: automake failed with exit status: 1

managed to fix it by modifying PKGBUILD as follows:

build() {
cd "${srcdir}/mpc-${pkgver}"

# http://lists.gforge.inria.fr/pipermail/mpc-discuss/2011-February/000805.html
patch -Np1 -i $srcdir/libmpc-0.9-configure_cflags_egrep_issue.patch
# 83eae7337dc46e3c89ec815f44620b9bc028fc8a
patch -Np1 -i $srcdir/automake-1.12.patch
autoreconf --force --install
automake --add-missing

./configure --prefix=/usr
make
}