aboutsummaryrefslogtreecommitdiffstats
path: root/testing/imv/APKBUILD
diff options
context:
space:
mode:
authorMike Sullivan <mksully22@gmail.com>2019-02-11 14:45:36 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2019-02-26 20:51:30 +0000
commit941939e441ac27b7da6b18596ec1f558946551fc (patch)
tree583e8f4ea339762f4648bb5eef56c99429a6ec68 /testing/imv/APKBUILD
parentb3d2470a8579b6d6dcdb231eee9ca67953e6455d (diff)
testing/imv: fix and reenable ppc64le build failures for bool decls
Diffstat (limited to 'testing/imv/APKBUILD')
-rw-r--r--testing/imv/APKBUILD7
1 files changed, 5 insertions, 2 deletions
diff --git a/testing/imv/APKBUILD b/testing/imv/APKBUILD
index 5cbcfc8571e..1513be33bd6 100644
--- a/testing/imv/APKBUILD
+++ b/testing/imv/APKBUILD
@@ -1,10 +1,10 @@
# Maintainer: Drew DeVault <sir@cmpwn.com>
pkgname=imv
pkgver=3.0.0
-pkgrel=1
+pkgrel=2
pkgdesc="Image viewer for X11/Wayland"
url="https://github.com/eXeC64/imv"
-arch="all !ppc64le"
+arch="all"
license="MIT"
makedepends="
asciidoc
@@ -27,6 +27,9 @@ prepare() {
build() {
cd "$builddir"
+ case "$CARCH" in
+ ppc64le) export CFLAGS="$CFLAGS -U__ALTIVEC__";;
+ esac
make
}