diff options
author | xantares | 2015-06-18 21:20:19 +0200 |
---|---|---|
committer | xantares | 2015-06-18 21:20:19 +0200 |
commit | 0fe2eb44bc95c42c8b923b98d6095987d539ea83 (patch) | |
tree | 114055c122909ae31cccdacdb828f5cae0675399 | |
parent | 24f19f2b6be8714984a503d50788ce3fdaa0a6bc (diff) | |
download | aur-0fe2eb44bc95c42c8b923b98d6095987d539ea83.tar.gz |
update to 1.6rc1
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 19 |
2 files changed, 10 insertions, 15 deletions
@@ -1,6 +1,6 @@ pkgbase = openturns pkgdesc = Uncertainty treatment library in C++/Python - pkgver = 1.5 + pkgver = 1.6rc1 pkgrel = 1 url = http://www.openturns.org/ arch = i686 @@ -21,8 +21,8 @@ pkgbase = openturns optdepends = r: plotting, linear model, truncated normal distribution estimation and statistical tests optdepends = python-matplotlib: nicer plotting backup = etc/openturns/openturns.conf - source = http://downloads.sourceforge.net/sourceforge/openturns/openturns/openturns-1.5.tar.bz2 - md5sums = 2622a0c0884014bf59cb6f34c48e7ff7 + source = http://downloads.sourceforge.net/sourceforge/openturns/openturns/openturns-1.6rc1.tar.bz2 + sha1sums = e424323b8c32e638cee0b3630fc3d531334bf419 pkgname = openturns @@ -1,5 +1,5 @@ pkgname=openturns -pkgver=1.5 +pkgver=1.6rc1 pkgrel=1 pkgdesc="Uncertainty treatment library in C++/Python" license=('LGPL') @@ -11,25 +11,20 @@ optdepends=('r: plotting, linear model, truncated normal distribution estimation makedepends=('python' 'python-sphinx' 'r' 'cmake' 'gcc-fortran' 'swig' 'boost') backup=('etc/openturns/openturns.conf') source=("http://downloads.sourceforge.net/sourceforge/openturns/openturns/openturns-$pkgver.tar.bz2") -md5sums=('2622a0c0884014bf59cb6f34c48e7ff7') - -prepare() { - cd $pkgname-$pkgver - 2to3 --no-diffs -w python/test/t_*.py -} +sha1sums=('e424323b8c32e638cee0b3630fc3d531334bf419') build() { - cd $pkgname-$pkgver - R CMD INSTALL --library=$PWD utils/rot_1.4.5.tar.gz + cd openturns-$pkgver + R CMD INSTALL --library=$PWD utils/rot_1.4.6.tar.gz export R_LIBS=$PWD cmake -DCMAKE_INSTALL_PREFIX=/usr \ - -DUSE_HMAT=OFF \ # ot 1.5 cannot use latest hmat 107 - -DOPENTURNS_SYSCONFIG_PATH=/etc . + -DOPENTURNS_SYSCONFIG_PATH=/etc \ + -DUSE_SPHINX=OFF . # latest sphinx has a bug make } package() { - cd $pkgname-$pkgver + cd openturns-$pkgver install -d "$pkgdir"/usr/lib/R/library/ cp -r rot "$pkgdir"/usr/lib/R/library/ make DESTDIR="$pkgdir" install |