Date: Friday, September 13, 2019 @ 08:43:29 Author: heftig Revision: 362411
3.34.0-1 Modified: gnome-nibbles/trunk/PKGBUILD ----------+ PKGBUILD | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-09-13 08:25:26 UTC (rev 362410) +++ PKGBUILD 2019-09-13 08:43:29 UTC (rev 362411) @@ -2,16 +2,16 @@ # Contributor: Jan de Groot <[email protected]> pkgname=gnome-nibbles -pkgver=3.32.0 +pkgver=3.34.0 pkgrel=1 pkgdesc="Guide a worm around a maze" url="https://wiki.gnome.org/Apps/Nibbles" arch=(x86_64) license=(GPL) -depends=(clutter-gtk libcanberra librsvg libgnome-games-support libgee) -makedepends=(intltool gobject-introspection yelp-tools appstream-glib vala git) +depends=(clutter-gtk gsound librsvg libgnome-games-support libgee) +makedepends=(gobject-introspection yelp-tools appstream-glib vala git meson) groups=(gnome-extra) -_commit=6becbf9e4aa30874ff9b8e22c651e961c3f4f6a2 # tags/3.32.0^0 +_commit=92b554b483742cfb8eab1e548d7c95893c44aebf # tags/3.34.0^0 source=("git+https://gitlab.gnome.org/GNOME/gnome-nibbles.git#commit=$_commit") sha256sums=('SKIP') @@ -22,17 +22,17 @@ prepare() { cd $pkgname - NOCONFIGURE=1 ./autogen.sh } build() { - cd $pkgname - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ - --disable-schemas-compile - make + arch-meson $pkgname build + ninja -C build } +check() { + meson test -C build --print-errorlogs +} + package() { - cd $pkgname - make DESTDIR="$pkgdir" install + DESTDIR="$pkgdir" meson install -C build }
