Date: Monday, May 1, 2023 @ 20:28:33
  Author: heftig
Revision: 476222

0.5.0+r18+g5f4c801-1: FS#70517 fix groups

Modified:
  gnome-video-effects/trunk/PKGBUILD

----------+
 PKGBUILD |   31 +++++++++++++++++++------------
 1 file changed, 19 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD    2023-05-01 20:26:28 UTC (rev 476221)
+++ PKGBUILD    2023-05-01 20:28:33 UTC (rev 476222)
@@ -1,22 +1,29 @@
 # Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
 
 pkgname=gnome-video-effects
-pkgver=0.5.0+4+g9554041
-pkgrel=2
+pkgver=0.5.0+r18+g5f4c801
+pkgrel=1
+epoch=1
 pkgdesc="Collection of GStreamer effects for GNOME"
+url="https://gitlab.gnome.org/GNOME/gnome-video-effects";
 arch=(any)
-url="https://gitlab.gnome.org/GNOME/gnome-video-effects";
 license=(GPL2)
-depends=(gst-plugins-good gst-plugins-bad frei0r-plugins)
-makedepends=(meson git)
-_commit=955404195ada606819974dd63c48956f25611e14  # master
-groups=(gnome)
+depends=(
+  frei0r-plugins
+  gst-plugins-bad
+  gst-plugins-good
+)
+makedepends=(
+  git
+  meson
+)
+_commit=5f4c801ceff9e10f7ae6c1b0b3ff907f56f945e3  # master
 source=("git+$url.git#commit=$_commit")
-sha256sums=('SKIP')
+b2sums=('SKIP')
 
 pkgver() {
   cd $pkgname
-  git describe --tags | sed 's/-/+/g'
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
 }
 
 prepare() {
@@ -25,7 +32,7 @@
 
 build() {
   arch-meson $pkgname build
-  ninja -C build
+  meson compile -C build
 }
 
 check() {
@@ -33,7 +40,7 @@
 }
 
 package() {
-  DESTDIR="$pkgdir" meson install -C build
+  meson install -C build --destdir "$pkgdir"
 }
 
-# vim:set ts=2 sw=2 et:
+# vim:set sw=2 sts=-1 et:

Reply via email to