summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDorian Harmans2022-03-18 18:02:04 +0100
committerDorian Harmans2022-03-18 18:02:04 +0100
commit251023687291de07665c147ef41be8075302a19a (patch)
tree75f1f70d33296c70469c5d4ee9e81c4ee0c9dcd8
parent7bee1957f36f3e25cfbe0017d2f46c47cec72283 (diff)
downloadaur-251023687291de07665c147ef41be8075302a19a.tar.gz
fix build - thanks to phaise
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 5 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e452e19fc51b..4edb2cc4c04a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = chugins-git
pkgdesc = Repository for ChuGins (to use with chuck)
pkgver = 1.3.5.2.r181.gbc1ddd2
- pkgrel = 9
+ pkgrel = 10
url = https://github.com/ccrma/chugins
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index b1f815f33b1d..1107b5c9a136 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: schaap137 <dojo86@gmail.com>
pkgname=chugins-git
pkgver=1.3.5.2.r181.gbc1ddd2
-pkgrel=9
+pkgrel=10
pkgdesc="Repository for ChuGins (to use with chuck)"
arch=('i686' 'x86_64')
url="https://github.com/ccrma/chugins"
@@ -9,6 +9,7 @@ license=('GPL')
depends=('chuck')
makedepends=('git')
source=("$pkgname"::"git+https://github.com/ccrma/chugins.git")
+#buildflags=('FLAGS="${FLAGS} -std=c++14"')
sha256sums=('SKIP')
pkgver() {
@@ -22,6 +23,8 @@ prepare() {
# Change JACK to PULSE if you use chuck-pulse, or comment out the next line if you use chuck-alsa
sed -e 's/__LINUX_ALSA__/__LINUX_JACK__/g' -i **/makefile.linux
sed -e 's/\/usr\/local\/lib/\/usr\/lib/g' -i **/makefile.linux makefile
+ # Temporary fix until this code becomes fully ISO C++17 compliant - with thanks to phaise
+ sed -i '71s/^/FLAGS+= -Wno-error=register/' Mesh2D/makefile
}
build() {