Date: Monday, March 4, 2019 @ 13:01:03 Author: alucryd Revision: 437526
archrelease: copy trunk to community-any Added: pantheon-dpms-helper/repos/ pantheon-dpms-helper/repos/community-any/ pantheon-dpms-helper/repos/community-any/PKGBUILD (from rev 437525, pantheon-dpms-helper/trunk/PKGBUILD) ----------+ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) Copied: pantheon-dpms-helper/repos/community-any/PKGBUILD (from rev 437525, pantheon-dpms-helper/trunk/PKGBUILD) =================================================================== --- repos/community-any/PKGBUILD (rev 0) +++ repos/community-any/PKGBUILD 2019-03-04 13:01:03 UTC (rev 437526) @@ -0,0 +1,32 @@ +# Maintainer: Maxime Gauduin <aluc...@archlinux.org> + +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: