leniviy: nope, i just did what parallel-tests suggested when it failed -- and it worked. :)
Search Criteria
Package Details: libmpc09 0.9-1
Package Actions
| Package Base: | libmpc09 |
|---|---|
| Description: | Library for the arithmetic of complex numbers with arbitrarily high precision |
| Upstream URL: | http://www.multiprecision.org/ |
| Category: | devel |
| Licenses: | |
| 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)
- mpfr>=3.0.0
Required by (0)
Sources
- automake-1.12.patch
- http://www.multiprecision.org/mpc/download/mpc-0.9/_/-}.tar.gz
- libmpc-0.9-configure_cflags_egrep_issue.patch
Latest Comments
Comment by saironiq
Comment by basinilya
saironiq: have you tried just adding "--install" to autoreconf?
Comment by saironiq
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
}