summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorAnton Karmanov2021-04-05 13:39:25 +0300
committerAnton Karmanov2021-04-05 13:39:25 +0300
commit4fb25c8b423be6c1c4a7966b2388a25cf03e989d (patch)
tree8b9f40939b759491c973b831aa3ab251cf2f1004 /PKGBUILD
parente0d031d4f938e4c7449ad10da688295443fb41ab (diff)
downloadaur-libgraph.tar.gz
Add -fcommon to CFLAGS
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD6
1 files changed, 3 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 4a6b8bf3a1fe..49e4d06c7e24 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,8 +1,8 @@
-# Maintainer: Anton Karmanov <bergentroll@insiberia.net>
+# Maintainer: Anton Karmanov <a.karmanov@inventati.org>
pkgname=libgraph
pkgver=1.0.2
-pkgrel=2
+pkgrel=3
pkgdesc="Lib Graphics — Turbo C's graphics.h on Linux"
arch=('x86_64')
url="https://savannah.nongnu.org/projects/libgraph"
@@ -13,7 +13,7 @@ md5sums=('6093bf0a9a65a5b873836276c9954194')
build() {
cd "$pkgname-$pkgver"
- ./configure --prefix=/usr
+ env CFLAGS="$CFLAGS -fcommon" ./configure --prefix=/usr
make
}