Date: Friday, March 15, 2019 @ 21:23:08 Author: heftig Revision: 348387
3.32.0-1 Modified: gnome-tetravex/trunk/PKGBUILD ----------+ PKGBUILD | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-03-15 21:22:58 UTC (rev 348386) +++ PKGBUILD 2019-03-15 21:23:08 UTC (rev 348387) @@ -2,17 +2,17 @@ # Contributor: Jan de Groot <[email protected]> pkgname=gnome-tetravex -pkgver=3.22.0+4+g817dbf6 -pkgrel=2 +pkgver=3.32.0 +pkgrel=1 pkgdesc="Complete the puzzle by matching numbered tiles" url="https://wiki.gnome.org/Apps/Tetravex" arch=(x86_64) license=(GPL) depends=(gtk3) -makedepends=(intltool itstool gobject-introspection vala yelp-tools appstream-glib git) +makedepends=(meson gobject-introspection vala yelp-tools appstream-glib git) groups=(gnome-extra) -_commit=817dbf6801d272b338f87326ff1e2ac74035865f # master -source=("git+https://git.gnome.org/browse/gnome-tetravex#commit=$_commit") +_commit=71406876aea3f909b5452ac838221330650ecd43 # tags/3.32.0^0 +source=("git+https://gitlab.gnome.org/GNOME/gnome-tetravex.git#commit=$_commit") sha256sums=('SKIP') pkgver() { @@ -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 +} + package() { - cd $pkgname - make DESTDIR="$pkgdir" install + DESTDIR="$pkgdir" meson install -C build }
