blob: 68b7d43f2fd9b2485511a5e2836f53414887e030 (
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
|
# Maintainer: vinszent <vinszent@vinszent.com>
pkgname=gnome-twitch-player-backend-gstreamer-clutter-git
pkgver=r1010.e74f175
pkgrel=1
pkgdesc="GStreamer Clutter (hardware rendering) player backend for GNOME Twitch"
arch=('i686' 'x86_64')
url="https://github.com/vinszent/gnome-twitch"
license=('GPL3')
makedepends=('git' 'meson')
depends=('gnome-twitch-git' 'gtk3' 'gstreamer' 'gst-libav' 'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-bad' 'libpeas' 'gobject-introspection' 'clutter-gst' 'clutter-gtk')
source=("$pkgname::git+https://github.com/vinszent/gnome-twitch.git")
md5sums=('SKIP')
conflicts=('gnome-twitch-player-backend-gstreamer-clutter')
pkgver()
{
cd "${pkgname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build()
{
cd "${pkgname}"
rm -rf build
mkdir build
cd build
meson --prefix /usr --libdir lib --buildtype release \
-Dbuild-executable=false \
-Dbuild-player-backends=gstreamer-clutter ..
ninja
}
package()
{
cd "${pkgname}/build"
DESTDIR="$pkgdir" ninja install
}
|