summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDylan Delgado2020-11-20 21:07:50 -0500
committerDylan Delgado2020-11-20 21:07:50 -0500
commit6070a55492f58cd8ea0a675c281df6786f2c887b (patch)
tree6ab946d561d7a1bdf4c6834747ff2e34970cd503
parent25f9e35cf42e31900aa3fada638a72b6bc138ed1 (diff)
downloadaur-6070a55492f58cd8ea0a675c281df6786f2c887b.tar.gz
Support multithreaded compilation, add maintainer info.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2c1fb41436f4..e542b6f9f269 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = reduze
pkgdesc = Computer program for reducing Feynman integrals to master integrals employing a variant of Laporta's reduction algorithm.
pkgver = 2.4
- pkgrel = 2
+ pkgrel = 3
url = https://reduze.hepforge.org/
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 2cce814049b8..3d964fe0defe 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,8 @@
+#Maintainer: Dylan Delgado <dylan1496 at live dot com>
+
pkgname=reduze
pkgver=2.4
-pkgrel=2
+pkgrel=3
pkgdesc="Computer program for reducing Feynman integrals to master integrals employing a variant of Laporta's reduction algorithm."
arch=('i686' 'x86_64')
url="https://reduze.hepforge.org/"
@@ -17,7 +19,7 @@ sha256sums=('107d6875104f464d677410aebee6d06737c11c5ba21c2bc85e8fab7d500076f6')
build() {
cd ${srcdir}/reduze-"${pkgver}"
cmake -DCMAKE_INSTALL_PREFIX=${srcdir}/reduze-"${pkgver}" -DUSE_MPI=ON -DUSE_DATABASE=ON -DUSE_FERMAT=ON -S ${srcdir}/reduze-"${pkgver}"
-make -j1
+make -j
make check
}