diff options
Diffstat (limited to 'skip/glade')
-rw-r--r-- | skip/glade/duplicate-linguas.patch | 9 | ||||
-rw-r--r-- | skip/glade/glade.xibuild | 31 | ||||
-rw-r--r-- | skip/glade/meson-0.60.patch | 18 |
3 files changed, 58 insertions, 0 deletions
diff --git a/skip/glade/duplicate-linguas.patch b/skip/glade/duplicate-linguas.patch new file mode 100644 index 0000000..4d2ab18 --- /dev/null +++ b/skip/glade/duplicate-linguas.patch @@ -0,0 +1,9 @@ +--- a/help/LINGUAS ++++ b/help/LINGUAS +@@ -1,6 +1,5 @@ + # please keep this list sorted alphabetically + # +-da + bg + ca + cs diff --git a/skip/glade/glade.xibuild b/skip/glade/glade.xibuild new file mode 100644 index 0000000..019c97d --- /dev/null +++ b/skip/glade/glade.xibuild @@ -0,0 +1,31 @@ +#!/bin/sh + +NAME="glade" +DESC="User Interface Designer for GTK+ and GNOME" + +MAKEDEPS="gtk3 libxml2 itstool intltool python-gobject gobject-introspection meson python gjs" + +PKG_VER=3.38.2 +SOURCE="https://download.gnome.org/sources/glade/${PKG_VER%.*}/glade-$PKG_VER.tar.xz" + +ADDITIONAL=" +duplicate-linguas.patch +meson-0.60.patch +" + +prepare () { + apply_patches +} + +build() { + meson --prefix=/usr \ + . output + meson compile ${JOBS:+-j ${JOBS}} -C output +} + +package() { + # this one index is missing, so copy it from another language + mkdir output/help/hi/ + + DESTDIR="$PKG_DEST" meson install --no-rebuild -C output +} diff --git a/skip/glade/meson-0.60.patch b/skip/glade/meson-0.60.patch new file mode 100644 index 0000000..d470a31 --- /dev/null +++ b/skip/glade/meson-0.60.patch @@ -0,0 +1,18 @@ +--- a/data/meson.build ++++ b/data/meson.build +@@ -2,7 +2,6 @@ + desktop_conf.set('VERSION', glade_version) + + i18n.merge_file( +- 'desktop', + type: 'desktop', + input: configure_file( + input: 'org.gnome.Glade.desktop.in.in', +@@ -18,7 +17,6 @@ + appdata = glade_name + '.appdata.xml' + + i18n.merge_file( +- 'appdata', + input: 'org.gnome.Glade.appdata.xml.in', + output: '@BASENAME@', + po_dir: po_dir, |