summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Kasak2020-04-17 11:28:16 +0200
committerDenis Kasak2020-04-17 11:28:16 +0200
commit0408afa224e2f28c9c0a46d854e0c9b52541e0da (patch)
treedd2ca351f2b686b1d5e57466b220dc7508af999a
parent54426a60f06402acee196789c81fb6fc7c5a6d04 (diff)
downloadaur-0408afa224e2f28c9c0a46d854e0c9b52541e0da.tar.gz
Fix compilation.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 4 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index af69e421c1c5..379c12f66ec2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = contextfree
pkgdesc = A program that generates images from written instructions called a grammar
pkgver = 3.2
- pkgrel = 1
+ pkgrel = 2
url = https://www.contextfreeart.org/
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 92073cb67d6b..0b8b993f4203 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
pkgname=contextfree
pkgver=3.2
-pkgrel=1
+pkgrel=2
pkgdesc="A program that generates images from written instructions called a grammar"
arch=('i686' 'x86_64')
url="https://www.contextfreeart.org/"
@@ -17,11 +17,12 @@ sha256sums=('d96cee09cee9022f25c0a085d68249df3e1d384017dd069b3a76fe0053ade977')
build() {
- # NOTE: 3.1 tarball packages files directly in the root of the archive
+ # NOTE: 3.1+ tarball packages files directly in the root of the archive
# instead of under a directory.
# cd "$srcdir/context-free-$pkgver"
cd "$srcdir"
+ sed -i 's/c++14/c++17/' Makefile
make
}