blob: 327d4ca4b00e1a01e57e840737f182daa454e64d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
pkgname=gnome-video-effects-git
_pkgname=gnome-video-effects
pkgver=0.5.0+7+g98cd0b2
pkgrel=1
pkgdesc="Collection of GStreamer effects for GNOME"
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')
provides=('gnome-video-effects')
conflicts=('gnome-video-effects')
source=("git+https://gitlab.gnome.org/GNOME/gnome-video-effects.git")
sha512sums=('SKIP')
pkgver() {
cd $_pkgname
git describe --tags | sed 's/-/+/g'
}
build() {
arch-meson $_pkgname build
ninja -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
DESTDIR="$pkgdir" meson install -C build
}
# vim:set ts=2 sw=2 et:
|