summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJingbei Li2018-09-13 16:16:51 +0800
committerJingbei Li2018-09-13 16:16:51 +0800
commit6329dc6a95ac2cf9efc01892c5156ee817aec7e4 (patch)
treee4b1d2534fbd6db544361786cf495610bdadd9d7
parent3009db7928096f8e78bd2459bf342748bc35565d (diff)
downloadaur-6329dc6a95ac2cf9efc01892c5156ee817aec7e4.tar.gz
added -p to mkdir
-rw-r--r--.SRCINFO4
-rw-r--r--.gitignore1
-rw-r--r--PKGBUILD4
3 files changed, 4 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e77c7926636f..90be6b0f1c4c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,7 @@
-# Generated by mksrcinfo v8
-# Sun Oct 15 08:03:03 UTC 2017
pkgbase = trilinos
pkgdesc = An effort to develop algorithms and enabling technologies within an object-oriented software framework for the solution of large-scale, complex multi-physics engineering and scientific problems.
pkgver = 12.12.1
- pkgrel = 1
+ pkgrel = 2
url = http://trilinos.org
arch = i686
arch = x86_64
diff --git a/.gitignore b/.gitignore
index cbb871d25c2d..21f8edf65c5d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
*/
*.tar.gz
*.pkg*
+*.log
diff --git a/PKGBUILD b/PKGBUILD
index 1312cdb4a293..29e43aed36ac 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
pkgname=trilinos
_gitname=Trilinos
pkgver=12.12.1
-pkgrel=1
+pkgrel=2
pkgdesc="An effort to develop algorithms and enabling technologies within an object-oriented software framework for the solution of large-scale, complex multi-physics engineering and scientific problems."
arch=('i686' 'x86_64')
url="http://trilinos.org"
@@ -24,7 +24,7 @@ prepare() {
build() {
cd $srcdir/$_gitname
- mkdir build
+ mkdir -p build
cd build
cmake .. \
-DTrilinos_ENABLE_ALL_OPTIONAL_PACKAGES:BOOL=ON \