diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2019-10-17 13:07:48 +0200 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-10-24 18:56:34 +0000 |
commit | 5e99e5ccfe2cf58cffbfd8ee70553fd6c5730910 (patch) | |
tree | 8434cfef749b03e09b4e95b2a481fe35924eba9f | |
parent | 94ea820aeefb9a91de0900071027ef9fd1653e38 (diff) | |
download | aports-5e99e5ccfe2cf58cffbfd8ee70553fd6c5730910.tar.gz aports-5e99e5ccfe2cf58cffbfd8ee70553fd6c5730910.tar.bz2 aports-5e99e5ccfe2cf58cffbfd8ee70553fd6c5730910.tar.xz |
testing/ibus-anthy: disable on s390x due to librsvg
Closes !509
-rw-r--r-- | testing/ibus-anthy/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testing/ibus-anthy/APKBUILD b/testing/ibus-anthy/APKBUILD index 1edf7a647b..a255ffdd77 100644 --- a/testing/ibus-anthy/APKBUILD +++ b/testing/ibus-anthy/APKBUILD @@ -4,7 +4,7 @@ pkgver=1.5.11 pkgrel=1 pkgdesc="Japanese input method Anthy IMEngine for IBus Framework" url="https://github.com/ibus/ibus-anthy" -arch="all" +arch="all !s390x" # ibus needs librsvg which isn't available on s390x license="GPL-2.0-only" depends="ibus anthy py-gobject3 gtk-update-icon-cache" makedepends=" @@ -12,7 +12,7 @@ makedepends=" gobject-introspection-dev ibus-dev anthy-dev py3-pytest " -source="$pkgname-$pkgver.tar.gz::https://github.com/ibus/$pkgname/archive/$pkgver.tar.gz" +source="$pkgname-$pkgver.tar.gz::https://github.com/ibus/ibus-anthy/archive/$pkgver.tar.gz" subpackages="$pkgname-lang" # anthy tests require a running X server options="!check" @@ -21,6 +21,7 @@ build() { ./autogen.sh \ --prefix=/usr \ --libexec=/usr/lib/ibus + gettextize -f make } |