Date: Friday, April 3, 2020 @ 07:32:25 Author: alucryd Revision: 610771
Add pantheon-geoclue2-agent Added: pantheon-geoclue2-agent/ pantheon-geoclue2-agent/trunk/ pantheon-geoclue2-agent/trunk/PKGBUILD ----------+ PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) Added: pantheon-geoclue2-agent/trunk/PKGBUILD =================================================================== --- pantheon-geoclue2-agent/trunk/PKGBUILD (rev 0) +++ pantheon-geoclue2-agent/trunk/PKGBUILD 2020-04-03 07:32:25 UTC (rev 610771) @@ -0,0 +1,44 @@ +# Maintainer: Maxime Gauduin <[email protected]> + +pkgname=pantheon-geoclue2-agent +pkgver=1.0.3 +pkgrel=1 +pkgdesc='Pantheon Geoclue2 Agent' +arch=(x86_64) +url=https://github.com/elementary/pantheon-agent-geoclue2 +license=(GPL3) +groups=(pantheon) +depends=( + geoclue2 + glibc + libgdk-3.so + libgio-2.0.so + libglib-2.0.so + libgobject-2.0.so + libgtk-3.so +) +makedepends=( + git + intltool + meson + vala +) +source=(pantheon-geoclue2-agent::git+https://github.com/elementary/pantheon-agent-geoclue2.git#tag=c6c9cfe3f428c131084002718cba7b0ca94a9d22) +sha256sums=(SKIP) + +pkgver() { + cd pantheon-geoclue2-agent + + git describe --tags +} + +build() { + arch-meson pantheon-geoclue2-agent build + ninja -C build +} + +package() { + DESTDIR="${pkgdir}" ninja -C build install +} + +# vim: ts=2 sw=2 et:
