summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 69af67d551db..8d7e3d931ea7 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Sat Sep 10 23:55:10 UTC 2016
+# Sun Sep 11 23:34:23 UTC 2016
pkgbase = libbobcat
pkgdesc = Bobcat (Brokken's Own Base Classes And Templates) library
pkgver = 4.03.00
- pkgrel = 1
+ pkgrel = 2
url = https://fbb-git.github.io/bobcat/
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 461c9f491f60..8d69fc347bce 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Contributor: Anton Jongsma <anton@felrood.nl>
pkgname=libbobcat
pkgver=4.03.00
-pkgrel=1
+pkgrel=2
pkgdesc="Bobcat (Brokken's Own Base Classes And Templates) library"
arch=('i686' 'x86_64')
url="https://fbb-git.github.io/bobcat/"
@@ -17,10 +17,12 @@ md5sums=('c85f6793efbaf8dcd1079c4b5bf29a24')
build() {
cd "$srcdir/bobcat-${pkgver}/bobcat"
- CXXFLAGS="$CXXFLAGS --std=c++11 -pthread"
+
+ CXXFLAGS="$CXXFLAGS -std=c++14"
LDFLAGS="$LDFLAGS -pthread"
# Add the -P option not to use precompiled headers, which can be useful since
# they require a lot of free space, compared to a normal compilation:
+ # ./build -P libraries all
./build libraries all
./build man
}