[arch-commits] Commit in gnome-clocks/trunk (PKGBUILD)

Jan de Groot jgc at archlinux.org
Tue Sep 19 21:22:27 UTC 2017


    Date: Tuesday, September 19, 2017 @ 21:22:25
  Author: jgc
Revision: 305871

upgpkg: gnome-clocks 3.26.0-1

Modified:
  gnome-clocks/trunk/PKGBUILD

----------+
 PKGBUILD |   22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2017-09-19 21:18:44 UTC (rev 305870)
+++ PKGBUILD	2017-09-19 21:22:25 UTC (rev 305871)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
 
 pkgname=gnome-clocks
-pkgver=3.24.0+4+gd1003cd
+pkgver=3.26.0
 pkgrel=1
 pkgdesc="Clocks applications for GNOME"
 url="https://wiki.gnome.org/Apps/Clocks"
@@ -9,9 +9,9 @@
 arch=(i686 x86_64)
 license=(GPL)
 depends=(gtk3 libcanberra libgweather gnome-desktop geoclue2 geocode-glib gsound)
-makedepends=(intltool vala gobject-introspection itstool yelp-tools git)
+makedepends=(vala gobject-introspection itstool yelp-tools git meson)
 groups=(gnome-extra)
-_commit=d1003cd0e43436e4221fe4d9765364b1aa989c67  # master
+_commit=3f223702f5b5ecf00a4ce83a385ec6b319d8ec85  # tags/3.26.0^0
 source=("git+https://git.gnome.org/browse/gnome-clocks#commit=$_commit")
 sha256sums=('SKIP')
 
@@ -21,22 +21,22 @@
 }
 
 prepare() {
+  mkdir build
   cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
+  cd build
+  meson setup --prefix=/usr --buildtype=release ../$pkgname
+  ninja
 }
 
 check() {
-  cd $pkgname
-  make check
+  cd build
+  meson test
 }
 
 package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
+  cd build
+  DESTDIR="$pkgdir" ninja install
 }



More information about the arch-commits mailing list