blob: 76dbf9cc4e921b41db22ab615ec8d853c7f457dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: Florent ThiƩry <fthiery@gmail.com>
pkgname="gst-gtklaunch-1.0"
pkgver=2015.12.27
pkgrel=1
pkgdesc="A utility for testing and controlling live GStreamer 1.0 pipelines. It
will inspect the specified pipeline to create the GTK GUI automagically using
introspection"
arch=('any')
license=('LGPL')
url="https://github.com/UbiCastTeam/${pkgname}"
depends=('python' 'python-setuptools' 'python-gobject' 'gtk3' 'xdot' 'graphviz')
source=("git+${url}.git")
sha512sums=('SKIP')
makedepends=('git')
package() {
cd "${srcdir}/${pkgname}"
python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
}
# vim:set ts=2 sw=2 et:
|