Date: Wednesday, March 14, 2018 @ 08:47:04 Author: bpiotrowski Revision: 318952
3.28.0-1 Modified: baobab/trunk/PKGBUILD ----------+ PKGBUILD | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-03-14 08:37:41 UTC (rev 318951) +++ PKGBUILD 2018-03-14 08:47:04 UTC (rev 318952) @@ -2,7 +2,7 @@ # Maintainer: Ionut Biru <[email protected]> pkgname=baobab -pkgver=3.26.1 +pkgver=3.28.0 pkgrel=1 pkgdesc="A graphical directory tree analyzer" url="https://wiki.gnome.org/Apps/Baobab" @@ -9,9 +9,10 @@ arch=(x86_64) license=(GPL2) depends=(dconf gtk3 gsettings-desktop-schemas librsvg) -makedepends=(intltool itstool vala gobject-introspection yelp-tools appstream-glib git) +makedepends=(intltool itstool vala gobject-introspection yelp-tools appstream-glib + git meson) groups=(gnome) -_commit=be96728e02b7140b8d9f746fd9321a207f30d819 # tags/3.26.1^0 +_commit=9b17875c2ea649efd414f1c8f56d8b4abb69ed2b # tags/3.28.0^0 source=("git+https://git.gnome.org/browse/baobab#commit=$_commit") sha256sums=('SKIP') @@ -20,23 +21,14 @@ git describe --tags | sed 's/-/+/g' } -prepare() { - cd $pkgname - NOCONFIGURE=1 ./autogen.sh -} - build() { - cd "$pkgname" - ./configure --prefix=/usr - make + arch-meson $pkgname build + ninja -C build } package() { - cd "$pkgname" - make DESTDIR="$pkgdir" install + DESTDIR="$pkgdir" ninja -C build install # https://bugs.archlinux.org/task/31861 sed -i '/MimeType/d' "$pkgdir/usr/share/applications/org.gnome.baobab.desktop" } - -# vim:set ts=2 sw=2 et:
