summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorConnor Behan2021-07-24 15:31:36 +0100
committerConnor Behan2021-07-24 15:31:36 +0100
commit29b4646f394f7b806af853e0dda10108e2601561 (patch)
tree504aab4cc5c48f1085b82cb6e8d72ea2f12395b8 /PKGBUILD
parent362c8f3d092fb6efb65c9bac22f8691fdee462f8 (diff)
downloadaur-29b4646f394f7b806af853e0dda10108e2601561.tar.gz
Specify C++11 standard
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index f4277ea85c5f..c6d7930b9818 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=scscp
pkgver=1.0.1
-pkgrel=2
+pkgrel=3
pkgdesc="C library for the Symbolic Computation Software Composibility Protocol"
arch=('i686' 'x86_64')
url="http://www.imcce.fr/Equipes/ASD/trip/scscp/"
@@ -13,7 +13,7 @@ source=(https://sourcesup.renater.fr/frs/download.php/file/4549/$pkgname-$pkgver
build() {
cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr
+ CXXFLAGS="-std=c++11" ./configure --prefix=/usr
make
#make check
}