diff options
author | nimius | 2021-01-02 17:07:44 +0100 |
---|---|---|
committer | nimius | 2021-01-02 17:07:44 +0100 |
commit | 7eba8dba266af1452865e3b7ffaeaf66964d10d1 (patch) | |
tree | a8304be352f05ae44cdd80bc6762bd9268944866 | |
parent | d1e908e74b45c58f08ade158e5a26c110df78322 (diff) | |
download | aur-gnaural.tar.gz |
fixed gcc compilation error with CFLAGS=\'-fcommon\'
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 7 |
2 files changed, 7 insertions, 6 deletions
@@ -1,9 +1,7 @@ -# Generated by mksrcinfo v8 -# Sat Jul 21 13:23:16 UTC 2018 pkgbase = gnaural pkgdesc = An opensource binaural-beat generator pkgver = 20110606 - pkgrel = 2 + pkgrel = 3 url = http://gnaural.sourceforge.net/ install = gnaural.install arch = i686 @@ -12,7 +10,9 @@ pkgbase = gnaural depends = libglade depends = portaudio source = http://downloads.sourceforge.net/project/gnaural/Gnaural/gnaural_20110606.tar.xz + source = gnaural.patch md5sums = a3f909ca56466393c9eef42f25fc028b + md5sums = 7b8a6f84ca8aeb01cf5b46e76027c1b5 pkgname = gnaural @@ -1,8 +1,9 @@ -# Maintainer: dustball +# Maintainer: nimius <l.wieling@gmx.de> +# Contributor: dustball pkgname=gnaural pkgver=20110606 -pkgrel=2 +pkgrel=3 pkgdesc="An opensource binaural-beat generator" arch=(i686 x86_64) url="http://gnaural.sourceforge.net/" @@ -19,7 +20,7 @@ build() { patch --strip=1 < "$srcdir/gnaural.patch" - ./configure --prefix=/usr + ./configure CFLAGS='-fcommon' --prefix=/usr make } |