Date: Sunday, March 6, 2022 @ 15:56:36 Author: foutrelis Revision: 1142621
archrelease: copy trunk to community-staging-any Added: sound-theme-elementary/repos/community-staging-any/ sound-theme-elementary/repos/community-staging-any/PKGBUILD (from rev 1142620, sound-theme-elementary/trunk/PKGBUILD) ----------+ PKGBUILD | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) Copied: sound-theme-elementary/repos/community-staging-any/PKGBUILD (from rev 1142620, sound-theme-elementary/trunk/PKGBUILD) =================================================================== --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2022-03-06 15:56:36 UTC (rev 1142621) @@ -0,0 +1,33 @@ +# Maintainer: Maxime Gauduin <aluc...@archlinux.org> + +pkgname=sound-theme-elementary +pkgver=1.1.0 +pkgrel=2 +pkgdesc='A bespoke sound for your theme' +arch=(any) +url=https://github.com/elementary/sound-theme +license=(GPL3) +groups=(pantheon) +makedepends=( + git + meson +) +_tag=88cb3a325995fcd5fe123f189062e3efb69972ca +source=(sound-theme-elementary::git+https://github.com/elementary/sound-theme.git#tag=${_tag}) +sha256sums=(SKIP) + +pkgver() { + cd sound-theme-elementary + git describe --tags +} + +build() { + arch-meson sound-theme-elementary build + ninja -C build +} + +package() { + DESTDIR="${pkgdir}" ninja -C build install +} + +# vim: ts=2 sw=2 et: