Date: Wednesday, March 6, 2019 @ 13:08:58 Author: alucryd Revision: 437847
archrelease: copy trunk to community-x86_64 Added: pantheon-shortcut-overlay/repos/ pantheon-shortcut-overlay/repos/community-x86_64/ pantheon-shortcut-overlay/repos/community-x86_64/PKGBUILD (from rev 437846, pantheon-shortcut-overlay/trunk/PKGBUILD) ----------+ PKGBUILD | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) Copied: pantheon-shortcut-overlay/repos/community-x86_64/PKGBUILD (from rev 437846, pantheon-shortcut-overlay/trunk/PKGBUILD) =================================================================== --- repos/community-x86_64/PKGBUILD (rev 0) +++ repos/community-x86_64/PKGBUILD 2019-03-06 13:08:58 UTC (rev 437847) @@ -0,0 +1,34 @@ +# Maintainer: Maxime Gauduin <aluc...@archlinux.org> + +pkgname=pantheon-shortcut-overlay +pkgver=1.0.1 +pkgrel=1 +pkgdesc='A native, OS-wide shortcut overlay' +arch=(x86_64) +url=https://github.com/elementary/shortcut-overlay +license=(GPL3) +groups=(pantheon) +depends=( + glib2 + gtk3 + libgee + libgranite.so +) +makedepends=( + git + meson + vala +) +source=(pantheon-shortcut-overlay::git+https://github.com/elementary/shortcut-overlay.git#tag=${pkgver}) +sha256sums=(SKIP) + +build() { + arch-meson pantheon-shortcut-overlay build + ninja -C build +} + +package() { + DESTDIR="${pkgdir}" ninja -C build install +} + +# vim: ts=2 sw=2 et: