diff options
author | Mike Sullivan <mksully22@gmail.com> | 2019-02-11 14:45:36 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-02-26 20:51:30 +0000 |
commit | 941939e441ac27b7da6b18596ec1f558946551fc (patch) | |
tree | 583e8f4ea339762f4648bb5eef56c99429a6ec68 /testing/imv | |
parent | b3d2470a8579b6d6dcdb231eee9ca67953e6455d (diff) | |
download | aports-941939e441ac27b7da6b18596ec1f558946551fc.tar.bz2 aports-941939e441ac27b7da6b18596ec1f558946551fc.tar.xz |
testing/imv: fix and reenable ppc64le build failures for bool decls
Diffstat (limited to 'testing/imv')
-rw-r--r-- | testing/imv/APKBUILD | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/testing/imv/APKBUILD b/testing/imv/APKBUILD index 5cbcfc8571..1513be33bd 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 } |