summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorWill Handley2020-05-23 19:05:59 +0100
committerWill Handley2020-05-23 19:05:59 +0100
commita6bd06b1799e7b09f21fab1beaab5d8273f9f11d (patch)
tree351cb27cbb6aa63bd03112a79934cee45c3f5b47
parent9505ab8801a301ab1cde48614891ba3af364a008 (diff)
downloadaur-a6bd06b1799e7b09f21fab1beaab5d8273f9f11d.tar.gz
Updated for broken gcc build
-rw-r--r--.SRCINFO2
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD4
3 files changed, 7 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b603fa145f37..b75e81bc506e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = multinest
pkgdesc = MultiNest is a Bayesian inference tool which calculates the evidence and explores the parameter space which may contain multiple posterior modes and pronounced (curving) degeneracies in moderately high dimensions.
pkgver = 3.12
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/farhanferoz/MultiNest
arch = any
license = custom
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..f52b2f5a9940
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+pkg/
+src/
+*.tar.xz
+*.tar.gz
diff --git a/PKGBUILD b/PKGBUILD
index 501a595ee61c..249bbbc7fb6d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Will Handley <wh260@cam.ac.uk> (aur.archlinux.org/account/wjhandley)
pkgname=multinest
pkgver='3.12'
-pkgrel=1
+pkgrel=2
pkgdesc="MultiNest is a Bayesian inference tool which calculates the evidence and explores the parameter space which may contain multiple posterior modes and pronounced (curving) degeneracies in moderately high dimensions."
arch=(any)
url="https://github.com/farhanferoz/MultiNest"
@@ -27,7 +27,7 @@ build() {
cd "${srcdir}/MultiNest-ba3e7d812b04e044b4d6e0319bd49a9fa6d78192/MultiNest_v3.12_CMake/multinest/"
mkdir -p build
cd build
- cmake ..
+ cmake -E env FFLAGS="-fallow-argument-mismatch" cmake ..
make
}