Date: Tuesday, October 25, 2022 @ 22:32:00
Author: heftig
Revision: 459016
archrelease: copy trunk to gnome-unstable-x86_64
Added:
eog-plugins/repos/gnome-unstable-x86_64/
eog-plugins/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 459014, eog-plugins/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: eog-plugins/repos/gnome-unstable-x86_64/PKGBUILD (from rev 459014,
eog-plugins/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-x86_64/PKGBUILD (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD 2022-10-25 22:32:00 UTC (rev 459016)
@@ -0,0 +1,39 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+
+pkgname=eog-plugins
+pkgver=42.2
+pkgrel=1
+pkgdesc="Plugins for Eye of Gnome"
+arch=(x86_64)
+url="https://wiki.gnome.org/Apps/EyeOfGnome/Plugins"
+license=(GPL2)
+depends=(eog libchamplain libgdata python-gobject)
+makedepends=(gobject-introspection git meson)
+options=(debug)
+_commit=057d63da22618c4e9edbfc686f9959b2fcd5bf3c # tags/42.2^0
+source=("git+https://gitlab.gnome.org/GNOME/eog-plugins.git#commit=$_commit")
+sha512sums=('SKIP')
+
+pkgver() {
+ cd $pkgname
+ git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd $pkgname
+}
+
+build() {
+ arch-meson $pkgname build
+ 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: