Date: Sunday, March 8, 2020 @ 07:58:23 Author: heftig Revision: 591482
archrelease: copy trunk to community-testing-x86_64 Added: switchboard-plug-locale/repos/community-testing-x86_64/ switchboard-plug-locale/repos/community-testing-x86_64/PKGBUILD (from rev 591481, switchboard-plug-locale/trunk/PKGBUILD) ----------+ PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) Copied: switchboard-plug-locale/repos/community-testing-x86_64/PKGBUILD (from rev 591481, switchboard-plug-locale/trunk/PKGBUILD) =================================================================== --- community-testing-x86_64/PKGBUILD (rev 0) +++ community-testing-x86_64/PKGBUILD 2020-03-08 07:58:23 UTC (rev 591482) @@ -0,0 +1,44 @@ +# Maintainer: Maxime Gauduin <aluc...@archlinux.org> + +pkgname=switchboard-plug-locale +pkgver=2.5.0 +pkgrel=2 +pkgdesc='Switchboard Locale Plug' +arch=(x86_64) +url=https://github.com/elementary/switchboard-plug-locale +license=(GPL3) +depends=( + accountsservice + glib2 + gnome-desktop + gtk3 + libgee + libgranite.so + libibus + libswitchboard-2.0.so + polkit +) +makedepends=( + git + meson + vala +) +source=(git+https://github.com/elementary/switchboard-plug-locale.git#tag=68d42a69a4cd85d4e31fcb4615db089c11a5bd03) +sha256sums=('SKIP') + +pkgver() { + cd switchboard-plug-locale + + git describe --tags +} + +build() { + arch-meson switchboard-plug-locale build + ninja -C build +} + +package() { + DESTDIR="${pkgdir}" ninja -C build install +} + +# vim: ts=2 sw=2 et: