Date: Saturday, April 29, 2023 @ 00:41:04
Author: heftig
Revision: 475359
archrelease: copy trunk to gnome-unstable-x86_64
Added:
grilo/repos/gnome-unstable-x86_64/
grilo/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 475358, grilo/trunk/PKGBUILD)
----------+
PKGBUILD | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
Copied: grilo/repos/gnome-unstable-x86_64/PKGBUILD (from rev 475358,
grilo/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-x86_64/PKGBUILD (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD 2023-04-29 00:41:04 UTC (rev 475359)
@@ -0,0 +1,55 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+
+pkgname=grilo
+pkgver=0.3.15
+pkgrel=3
+pkgdesc="Framework that provides access to various sources of multimedia
content"
+url="https://wiki.gnome.org/Projects/Grilo"
+arch=(x86_64)
+license=(LGPL)
+depends=(
+ liboauth
+ libsoup3
+ libxml2
+ totem-pl-parser
+)
+makedepends=(
+ git
+ gobject-introspection
+ gtk-doc
+ gtk3
+ meson
+ vala
+)
+optdepends=(
+ 'grilo-plugins: Plugins for grilo'
+ 'gtk3: Test UI'
+)
+provides=(libgr{ilo,lnet,lpls}-0.3.so)
+_commit=14a4a66d92b78d7db6e872cf09db40fbfb6c470d # tags/grilo-0.3.15^0
+source=("git+https://gitlab.gnome.org/GNOME/grilo.git#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+ cd grilo
+ git describe --tags | sed 's/^grilo-//;s/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd grilo
+}
+
+build() {
+ arch-meson grilo 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: