summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorsukanka2023-04-11 20:13:17 +0800
committersukanka2023-04-11 20:13:17 +0800
commit810d542a9c02984374722f5fa48bfb9339a5df0b (patch)
tree7591ea0bb97f1a5885c6a91b8dc188e77c5f4e46
parentd7d035df85f68320723f03b8a6210ebd7c87435f (diff)
downloadaur-810d542a9c02984374722f5fa48bfb9339a5df0b.tar.gz
update to 2.32.0-rc1
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD12
2 files changed, 12 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4e63d5abd1f7..d5ceb44ec169 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = stanc
pkgdesc = A package for obtaining Bayesian inference using the No-U-Turn sampler, a variant of Hamiltonian Monte Carlo.
- pkgver = 2.31.0
- pkgrel = 2
+ pkgver = 2.32.0_rc1
+ pkgrel = 1
url = https://mc-stan.org/
arch = i686
arch = x86_64
@@ -11,7 +11,7 @@ pkgbase = stanc
makedepends = doxygen
depends = gcc-libs
provides = cmdstan
- source = https://github.com/stan-dev/cmdstan/releases/download/v2.31.0/cmdstan-2.31.0.tar.gz
- sha512sums = 184c39f3eb87f0e0453c49957534579b6d8d8091aa5a6fc8eb8272ddcebd5c41eef4bda49dc18c2b3e599e32d8d5fd8ec9af55c132f10c58745bd08403930f45
+ source = https://github.com/stan-dev/cmdstan/releases/download/v2.32.0-rc1/cmdstan-2.32.0-rc1.tar.gz
+ sha512sums = 6e734ce47561bf9b2d8674bedd0ddd1e22f476d324ac546a368e0ee925ebcb02f1c3da6d8bdc65fcbca15133f2a19c5a4ce46defee1a1b7264b458f76a151a87
pkgname = stanc
diff --git a/PKGBUILD b/PKGBUILD
index e989cf3f85ec..57893791b6ac 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,8 +3,8 @@
pkgname='stanc'
pkgdesc="A package for obtaining Bayesian inference using the No-U-Turn sampler, a variant of Hamiltonian Monte Carlo."
-pkgver=2.31.0
-pkgrel=2
+pkgver=2.32.0_rc1
+pkgrel=1
arch=('i686' 'x86_64')
url='https://mc-stan.org/'
license=('BSD')
@@ -17,7 +17,7 @@ makedepends=('texlive-bin' 'texlive-core' 'doxygen'
)
provides=("cmdstan")
source=(https://github.com/stan-dev/cmdstan/releases/download/v${pkgver/_/-}/cmdstan-${pkgver/_/-}.tar.gz)
-sha512sums=('184c39f3eb87f0e0453c49957534579b6d8d8091aa5a6fc8eb8272ddcebd5c41eef4bda49dc18c2b3e599e32d8d5fd8ec9af55c132f10c58745bd08403930f45')
+sha512sums=('6e734ce47561bf9b2d8674bedd0ddd1e22f476d324ac546a368e0ee925ebcb02f1c3da6d8bdc65fcbca15133f2a19c5a4ce46defee1a1b7264b458f76a151a87')
build() {
cd "${srcdir}/cmdstan-${pkgver/_/-}"
@@ -36,10 +36,14 @@ package() {
install -Tm755 bin/print "${pkgdir}/usr/bin/stanprint"
install -Tm755 bin/stansummary "${pkgdir}/usr/bin/stansummary"
- install -dm755 "${pkgdir}/usr/include/stan"
+ install -d "${pkgdir}/usr/include/stan"
+ install -d "${pkgdir}/usr/include/cmdstan"
cd "stan/src"
find . -iregex './stan.*.hpp$' -type f -exec install -DTm644 "{}" "${pkgdir}/usr/include/{}" \;
cd ../..
+ cd "src"
+ find . -iregex './cmdstan.*.hpp$' -type f -exec install -DTm644 "{}" "${pkgdir}/usr/include/{}" \;
+ cd ..
# Install LICENSE file:
install -dm755 "${pkgdir}/usr/share/licenses/stan"