Date: Monday, May 1, 2023 @ 20:52:11
Author: heftig
Revision: 476242
archrelease: copy trunk to gnome-unstable-x86_64
Added:
seahorse/repos/gnome-unstable-x86_64/
seahorse/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 476240, seahorse/trunk/PKGBUILD)
----------+
PKGBUILD | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 59 insertions(+)
Copied: seahorse/repos/gnome-unstable-x86_64/PKGBUILD (from rev 476240,
seahorse/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-x86_64/PKGBUILD (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD 2023-05-01 20:52:11 UTC (rev 476242)
@@ -0,0 +1,59 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: Jan de Groot <[email protected]>
+# Contributor: Michel Brabants <[email protected]>
+
+pkgname=seahorse
+pkgver=43.0
+pkgrel=2
+epoch=1
+pkgdesc="GNOME application for managing PGP keys."
+url="https://wiki.gnome.org/Apps/Seahorse"
+arch=(x86_64)
+license=(GPL)
+depends=(
+ gcr
+ gpgme
+ gtk3
+ libhandy
+ libpwquality
+ libsecret
+ libsoup3
+ org.freedesktop.secrets
+)
+makedepends=(
+ git
+ gobject-introspection
+ libldap
+ meson
+ vala
+ yelp-tools
+)
+provides=(x11-ssh-askpass)
+groups=(gnome-extra)
+_commit=5303f3ff9b3ce69c7e88ee4678328b8ce892ccdb # tags/43.0^0
+source=("git+https://gitlab.gnome.org/GNOME/seahorse.git#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+ cd seahorse
+ git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd seahorse
+}
+
+build() {
+ arch-meson seahorse build -D manpage=true
+ meson compile -C build
+}
+
+check() {
+ meson test -C build --print-errorlogs
+}
+
+package() {
+ meson install -C build --destdir "$pkgdir"
+}
+
+# vim:set sw=2 sts=-1 et: