Date: Tuesday, October 25, 2022 @ 22:45:06
Author: heftig
Revision: 459028
archrelease: copy trunk to gnome-unstable-x86_64
Added:
gnote/repos/gnome-unstable-x86_64/
gnote/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 459025, gnote/trunk/PKGBUILD)
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: gnote/repos/gnome-unstable-x86_64/PKGBUILD (from rev 459025,
gnote/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-x86_64/PKGBUILD (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD 2022-10-25 22:45:06 UTC (rev 459028)
@@ -0,0 +1,42 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: Jan de Groot <[email protected]>
+# Contributor: Ionut Biru <[email protected]>
+# Contributor: uastasi <[email protected]>
+
+pkgname=gnote
+pkgver=43.0
+pkgrel=1
+pkgdesc="A note taking application"
+url="https://wiki.gnome.org/Apps/Gnote"
+arch=(x86_64)
+license=(GPL3)
+depends=(gtkmm3 gspell libxslt libsecret)
+makedepends=(yelp-tools meson git)
+options=(debug)
+_commit=6298d00ad8f33b35b0a4c008a7fb96ddfc7b6c0b # tags/43.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gnote.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+ cd gnote
+ git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd gnote
+}
+
+build() {
+ arch-meson gnote build
+ meson compile -C build
+}
+
+check() {
+ meson test -C build
+}
+
+package() {
+ meson install -C build --destdir "$pkgdir"
+}
+
+# vim:set sw=2 sts=-1 et: