summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGavin Howard2021-11-10 07:33:47 -0700
committerGavin Howard2021-11-10 07:33:47 -0700
commit809ac59a5d11935a319d9cd8e7dbf5e419df50c8 (patch)
tree6a75b7e145761b83e4bf40a5121cbf78a959a330
parentecaf93a8bfdc5421627001ec685abe97f2331dc8 (diff)
downloadaur-809ac59a5d11935a319d9cd8e7dbf5e419df50c8.tar.gz
bc-gh: Fix configure fail
Signed-off-by: Gavin Howard <gavin@yzena.com>
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a3383e45c4ec..c006761b30af 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = bc-gh
pkgdesc = Implementation of dc and POSIX bc with GNU extensions
pkgver = 5.2.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/gavinhoward/bc
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 7f2e1eb19e67..af73d979ad44 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Gavin D. Howard <yzena.tech@gmail.com>
pkgname=bc-gh
pkgver=5.2.0
-pkgrel=1
+pkgrel=2
pkgdesc="Implementation of dc and POSIX bc with GNU extensions"
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
url="https://github.com/gavinhoward/bc"
@@ -19,7 +19,7 @@ CFLAGS="-flto -O3 $CFLAGS"
build() {
cd "bc-$pkgver"
- PREFIX=/usr ./configure.sh -GP -sbc.banner -sdc.tty_mode
+ PREFIX=/usr ./configure.sh -G -sbc.banner -sdc.tty_mode
make
}