Date: Monday, March 4, 2019 @ 13:00:44 Author: alucryd Revision: 437525
add pantheon-dpms-helper Added: pantheon-dpms-helper/ pantheon-dpms-helper/trunk/ pantheon-dpms-helper/trunk/PKGBUILD ----------+ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) Added: pantheon-dpms-helper/trunk/PKGBUILD =================================================================== --- pantheon-dpms-helper/trunk/PKGBUILD (rev 0) +++ pantheon-dpms-helper/trunk/PKGBUILD 2019-03-04 13:00:44 UTC (rev 437525) @@ -0,0 +1,32 @@ +# Maintainer: Maxime Gauduin <[email protected]> + +pkgname=pantheon-dpms-helper +pkgver=1.0 +pkgrel=1 +pkgdesc='DPMS helper for Pantheon' +arch=(any) +url=https://github.com/elementary/dpms-helper +license=(GPL) +groups=(pantheon) +depends=( + bash + dconf + desktop-file-utils +) +makedepends=( + git + meson +) +source=(pantheon-dpms-helper::git+https://github.com/elementary/dpms-helper.git#tag=${pkgver}) +sha256sums=(SKIP) + +build() { + arch-meson pantheon-dpms-helper build + ninja -C build +} + +package() { + DESTDIR="${pkgdir}" ninja -C build install +} + +# vim: ts=2 sw=2 et:
