aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRasmus Thomsen <oss@cogitri.dev>2019-12-24 23:13:42 +0100
committerRasmus Thomsen <oss@cogitri.dev>2019-12-24 23:15:36 +0100
commit98b694b5c68b21fa105f9b2d152b78abc230a098 (patch)
tree935d14559622e1ec8924881b52e28241b3e1cad8
parentdcbecae3460c56fc49663c70c1d1b30a67a03a7d (diff)
community/glade: remove support for webkit2gtk on s390x
-rw-r--r--community/glade/APKBUILD9
1 files changed, 7 insertions, 2 deletions
diff --git a/community/glade/APKBUILD b/community/glade/APKBUILD
index 2c23daa16d0..c02a3e01f4d 100644
--- a/community/glade/APKBUILD
+++ b/community/glade/APKBUILD
@@ -2,18 +2,23 @@
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=glade
pkgver=3.22.1
-pkgrel=1
+pkgrel=2
pkgdesc="User Interface Designer for GTK+ and GNOME"
url="https://glade.gnome.org/"
arch="all"
license="GPL-2.0-or-later"
makedepends="gtk+3.0-dev libxml2-dev itstool gtk-doc paxmark intltool
- webkit2gtk-dev py-gobject3-dev gobject-introspection-dev"
+ py-gobject3-dev gobject-introspection-dev"
checkdepends="xvfb-run ibus adwaita-icon-theme"
options="!check" # If adwaita-icon-theme wasn't installed e before we'd have to updathe the icon cache
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
source="https://download.gnome.org/sources/glade/${pkgver%.*}/glade-$pkgver.tar.xz"
+case "$CARCH" in
+ s390x) ;;
+ *) makedepends="$makedepends webkit2gtk-dev" ;;
+esac
+
build() {
./configure \
--build=$CBUILD \