Date: Tuesday, October 25, 2022 @ 23:13:37
Author: heftig
Revision: 459038
archrelease: copy trunk to gnome-unstable-x86_64
Added:
grilo/repos/gnome-unstable-x86_64/
grilo/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 459037, grilo/trunk/PKGBUILD)
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: grilo/repos/gnome-unstable-x86_64/PKGBUILD (from rev 459037,
grilo/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-x86_64/PKGBUILD (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD 2022-10-25 23:13:37 UTC (rev 459038)
@@ -0,0 +1,42 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+
+pkgname=grilo
+pkgver=0.3.15
+pkgrel=2
+pkgdesc="Framework that provides access to various sources of multimedia
content"
+url="https://wiki.gnome.org/Projects/Grilo"
+arch=(x86_64)
+license=(LGPL)
+depends=(libxml2 libsoup liboauth totem-plparser)
+makedepends=(gobject-introspection gtk-doc vala git meson gtk3)
+optdepends=('grilo-plugins: Plugins for grilo'
+ 'gtk3: Test UI')
+provides=(libgr{ilo,lnet,lpls}-0.3.so)
+options=(debug)
+_commit=14a4a66d92b78d7db6e872cf09db40fbfb6c470d # tags/grilo-0.3.15^0
+source=("git+https://gitlab.gnome.org/GNOME/grilo.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+ cd grilo
+ git describe --tags | sed 's/^grilo-//;s/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd grilo
+}
+
+build() {
+ arch-meson grilo build -D soup3=false
+ 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: