Date: Friday, December 9, 2022 @ 18:06:14
Author: arojas
Revision: 463676
archrelease: copy trunk to testing-x86_64
Added:
libmpc/repos/testing-x86_64/
libmpc/repos/testing-x86_64/PKGBUILD
(from rev 463675, libmpc/trunk/PKGBUILD)
libmpc/repos/testing-x86_64/keys/
----------+
PKGBUILD | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
Copied: libmpc/repos/testing-x86_64/PKGBUILD (from rev 463675,
libmpc/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-12-09 18:06:14 UTC (rev 463676)
@@ -0,0 +1,32 @@
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Allan McRae <[email protected]>
+
+pkgname=libmpc
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="Library for the arithmetic of complex numbers with arbitrarily high
precision"
+arch=('x86_64')
+url="http://www.multiprecision.org/"
+license=('LGPL')
+depends=('mpfr')
+source=(https://ftp.gnu.org/gnu/mpc/mpc-${pkgver/_/-}.tar.gz{,.sig})
+sha256sums=('0e3b12181d37207230f5a7a7ddcfc22abfc5fc9c05825e1a65401a489a432a2a'
+ 'SKIP')
+validpgpkeys=('AD17A21EF8AED8F1CC02DBD9F7D5C9BF765C61E3') # Andreas Enge
+
+build() {
+ cd mpc-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+check() {
+ cd mpc-$pkgver
+ make check
+}
+
+package() {
+ cd mpc-$pkgver
+ make DESTDIR="$pkgdir" install
+ mv "$pkgdir"/usr/share/info/{mpc,libmpc}.info
+}