diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-08-19 12:51:07 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-08-19 13:02:07 -0300 |
commit | cdefa881b22107b7600d7764fceeec9b98cd25a3 (patch) | |
tree | c970cad469bc36f422c3778f782c8a996a21b072 /testing | |
parent | be87945ed6832cc218cdf69a2e8e766f2e9d27d6 (diff) | |
download | aports-cdefa881b22107b7600d7764fceeec9b98cd25a3.tar.bz2 aports-cdefa881b22107b7600d7764fceeec9b98cd25a3.tar.xz |
testing/ghex: upgrade to 3.18.4
Diffstat (limited to 'testing')
-rw-r--r-- | testing/ghex/APKBUILD | 28 |
1 files changed, 10 insertions, 18 deletions
diff --git a/testing/ghex/APKBUILD b/testing/ghex/APKBUILD index 4d9a130aa8..6f0c9d1b67 100644 --- a/testing/ghex/APKBUILD +++ b/testing/ghex/APKBUILD @@ -1,35 +1,27 @@ # Contributor: August Klein <amatcoder@gmail.com> # Maintainer: August Klein <amatcoder@gmail.com> pkgname=ghex -pkgver=3.18.3 +pkgver=3.18.4 _pkgver=${pkgver%.*} -pkgrel=1 +pkgrel=0 pkgdesc="A hex editor for GNOME" url="https://wiki.gnome.org/Apps/Ghex" arch="all" -license="GPL" +license="GPL-2.0-or-later" depends="dconf" -depends_dev="gtk+3.0-dev" -makedepends="$depends_dev intltool itstool libxml2-utils" +makedepends="meson itstool gtk+3.0-dev glib-dev atk-dev" subpackages="$pkgname-dev $pkgname-lang $pkgname-doc" -source="https://download.gnome.org/sources/ghex/$_pkgver/$pkgname-$pkgver.tar.xz" - -builddir="$srcdir"/$pkgname-$pkgver +source="https://download.gnome.org/sources/ghex/$_pkgver/ghex-$pkgver.tar.xz" build() { - cd "$builddir" - ./configure \ - --build=$CBUILD \ - --host=$CHOST \ + meson \ --prefix=/usr \ - --disable-schemas-compile \ - --enable-compile-warnings=no - make + . output + ninja -C output } package() { - cd "$builddir" - make DESTDIR="$pkgdir" DATADIRNAME=share install + DESTDIR="$pkgdir" ninja -C output install } -sha512sums="e03b154a22db000a5994c68bb72280113e69e7ef210f86ab2c6578e77daabf50bac8eb620ffaad5a7eb776d23383478cbdc7fb317fa336cef55173f858519023 ghex-3.18.3.tar.xz" +sha512sums="6121a5986ee7d7f96bf7f401e155f8aa37f076af455bc68e43d1b5b02b63bc9aed3eba5209511d1b659eb4c9093ab5d9601c14a5e868d979e92a6d0ca0cf9ce2 ghex-3.18.4.tar.xz" |