Date: Saturday, October 29, 2022 @ 19:00:48
Author: heftig
Revision: 1339316
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 1339315, switchboard-plug-locale/trunk/PKGBUILD)
----------+
PKGBUILD | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
Copied: switchboard-plug-locale/repos/community-testing-x86_64/PKGBUILD (from
rev 1339315, switchboard-plug-locale/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2022-10-29 19:00:48 UTC (rev 1339316)
@@ -0,0 +1,46 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+
+pkgname=switchboard-plug-locale
+pkgver=2.5.8
+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
+)
+options=(debug)
+_tag=f0ff718bd235355041da143320fc488e9887145a
+source=(git+https://github.com/elementary/switchboard-plug-locale.git#tag=${_tag})
+sha256sums=('SKIP')
+
+pkgver() {
+ cd switchboard-plug-locale
+
+ git describe --tags
+}
+
+build() {
+ arch-meson switchboard-plug-locale build
+ meson compile -C build
+}
+
+package() {
+ meson install -C build --destdir "${pkgdir}"
+}
+
+# vim:set sw=2 sts=-1 et: