summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD12
2 files changed, 8 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index cdd45b085f38..ce150334fb52 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = revbayes
pkgdesc = Bayesian Phylogenetic Inference Using Graphical Models and an Interactive Model-Specification Language https://doi.org/10.1093/sysbio/syw021
- pkgver = 1.2.1
- pkgrel = 7
+ pkgver = 1.2.2
+ pkgrel = 1
url = https://github.com/revbayes/revbayes
arch = x86_64
license = GPL3
@@ -15,7 +15,7 @@ pkgbase = revbayes
depends = openlibm
conflicts = lrzsz
conflicts = revbayes-mpi
- source = git+https://github.com/revbayes/revbayes.git#tag=v1.2.1
+ source = git+https://github.com/revbayes/revbayes.git#tag=v1.2.2
source = rb.patch
md5sums = SKIP
md5sums = f5af0159704f049f8269584883bcaa80
diff --git a/PKGBUILD b/PKGBUILD
index 5dece061e92a..366b85c615eb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
pkgname=revbayes
-pkgver=1.2.1
-pkgrel=7
+pkgver=1.2.2
+pkgrel=1
pkgdesc="Bayesian Phylogenetic Inference Using Graphical Models and an Interactive Model-Specification Language https://doi.org/10.1093/sysbio/syw021"
arch=(x86_64)
url="https://github.com/revbayes/revbayes"
@@ -15,17 +15,15 @@ md5sums=('SKIP'
prepare() {
cd $srcdir/$pkgname
- # fix lib issue
- patch -p1 < $srcdir/rb.patch
-
git submodule update --init --recursive
./projects/meson/generate.sh
}
build() {
cd $srcdir/$pkgname
- CXXFLAGS="${CXXFLAGS} -std=c++14" arch-meson build \
- --buildtype release
+ arch-meson build \
+ --buildtype release \
+ -Dmpi=false
ninja -C build
}