Date: Wednesday, October 26, 2022 @ 22:55:50
Author: heftig
Revision: 1337931
archrelease: copy trunk to community-testing-x86_64
Added:
geary/repos/community-testing-x86_64/
geary/repos/community-testing-x86_64/PKGBUILD
(from rev 1337927, geary/trunk/PKGBUILD)
geary/repos/community-testing-x86_64/keys/
----------+
PKGBUILD | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 78 insertions(+)
Copied: geary/repos/community-testing-x86_64/PKGBUILD (from rev 1337927,
geary/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2022-10-26 22:55:50 UTC (rev 1337931)
@@ -0,0 +1,78 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+# Contributor: Fabian Bornschein <fabiscafe-cat-mailbox-dog-org>
+# Contributor: sebikul <[email protected]>
+# Contributor: Massimiliano Torromeo <[email protected]>
+
+pkgname=geary
+pkgver=43.0
+pkgrel=1
+epoch=1
+pkgdesc='A lightweight email client for the GNOME desktop'
+arch=(x86_64)
+url=https://wiki.gnome.org/Apps/Geary
+license=(GPL3)
+groups=(gnome-extra)
+depends=(
+ cairo
+ enchant
+ folks
+ gcr
+ gdk-pixbuf2
+ glib2
+ gmime3
+ gnome-online-accounts
+ gsound
+ gspell
+ gtk3
+ iso-codes
+ libcanberra
+ libgee
+ libhandy
+ libnotify
+ libpeas
+ libsecret
+ libsoup3
+ libstemmer
+ libxml2
+ libytnef
+ org.freedesktop.secrets
+ pango
+ sqlite
+ webkit2gtk-4.1
+)
+makedepends=(
+ appstream-glib
+ cmake
+ git
+ gobject-introspection
+ meson
+ vala
+ yelp-tools
+)
+options=(debug)
+_commit=94d6bec861daffb27efea85a296f347db7a5af6d # tags/43.0^0
+source=("git+https://gitlab.gnome.org/GNOME/geary.git#commit=$_commit")
+validpgpkeys=(3A2EF7F138557A145F2866E99FAB18747A8FC649) # Michael James
Gratton <[email protected]>
+sha256sums=('SKIP')
+
+prepare() {
+ cd geary
+}
+
+pkgver() {
+ cd geary
+ git describe --tags | sed 's/^gnome-//g;s/[^-]*-g/r&/;s/-/+/g'
+}
+
+build() {
+ arch-meson geary build \
+ -Dprofile=release
+ meson compile -C build
+}
+
+package() {
+ meson install -C build \
+ --destdir "${pkgdir}"
+}
+
+# vim: ts=2 sw=2 et: