Date: Thursday, March 15, 2018 @ 08:10:19 Author: heftig Revision: 319284
archrelease: copy trunk to staging-x86_64 Added: iagno/repos/staging-x86_64/ iagno/repos/staging-x86_64/PKGBUILD (from rev 319283, iagno/trunk/PKGBUILD) ----------+ PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) Copied: iagno/repos/staging-x86_64/PKGBUILD (from rev 319283, iagno/trunk/PKGBUILD) =================================================================== --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2018-03-15 08:10:19 UTC (rev 319284) @@ -0,0 +1,39 @@ +# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) <jan.steff...@gmail.com> +# Contributor: Jan de Groot <j...@archlinux.org> + +pkgname=iagno +pkgver=3.28.0 +pkgrel=1 +pkgdesc="Dominate the board in a classic version of Reversi" +url="https://wiki.gnome.org/Apps/Iagno" +arch=(x86_64) +license=(GPL) +depends=(gtk3 libcanberra librsvg) +makedepends=(intltool itstool gobject-introspection yelp-tools appstream-glib vala git) +groups=(gnome-extra) +_commit=9cea39bd5bad0a87ea59f3c247637914a3c7ea50 # tags/3.28.0^0 +source=("git+https://git.gnome.org/browse/iagno#commit=$_commit") +sha256sums=('SKIP') + +pkgver() { + cd $pkgname + git describe --tags | sed 's/-/+/g' +} + +prepare() { + cd $pkgname + NOCONFIGURE=1 ./autogen.sh +} + +build() { + cd $pkgname + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + --disable-schemas-compile + make +} + +package() { + cd $pkgname + make DESTDIR="$pkgdir" install +}