blob: 1262adffbaa9d9f4f2824f26ccc971eb0cdae65a (
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
35
36
37
38
39
40
41
|
# Maintainer: Rafael Fontenelle <rafaelff@gnome.org>
_name=gst-debugger
pkgname=$_name-git
pkgver=0.90.0.r73.g31e96de
pkgrel=1
pkgdesc="Remote GStreamer Debugger"
arch=('x86_64')
url="https://wiki.gnome.org/Apps/GstDebugger"
license=('GPL')
depends=('gstreamermm' 'gtkmm3' 'graphviz' 'protobuf-c' 'boost-libs')
makedepends=('git' 'meson' 'boost')
provides=($_name)
conflicts=($_name)
source=(git+https://git.gnome.org/browse/$_name)
md5sums=('SKIP')
prepare() {
mkdir build || true
cd build
}
pkgver() {
cd $_name
git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd build
meson setup --prefix=/usr ../$_name
}
check() {
cd build
meson test
}
package() {
cd build
DESTDIR="$pkgdir" ninja install
}
|