blob: f600a457b45f9d5b1b564ac432aaee8f9303c4d9 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Maintainer: Sebastian Meyer <mail@bastimeyer.de>
# maintained at https://github.com/streamlink/streamlink-twitch-gui-aur
_pkgname=streamlink-twitch-gui
pkgname="${_pkgname}-bin"
pkgver=2.5.3
pkgrel=1
pkgdesc="A multi platform Twitch.tv browser for Streamlink"
arch=("i686" "x86_64")
url="https://github.com/streamlink/streamlink-twitch-gui"
license=("MIT")
provides=("${_pkgname}")
conflicts=("${_pkgname}")
depends=("alsa-lib" "gtk3" "libxss" "nss" "streamlink")
options=(!strip)
source_i686=("https://github.com/streamlink/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-v${pkgver}-linux32.tar.gz")
source_x86_64=("https://github.com/streamlink/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-v${pkgver}-linux64.tar.gz")
sha256sums_i686=('cb6e7642156c45a92781d02938781e80c321b3ad4a4f12fd81f3e306369228e2')
sha256sums_x86_64=('b9ee44863fdd2ce20934956ad0f77a11b03586454fcf99beddc855bc45da1fa5')
package() {
cd "${srcdir}/${_pkgname}"
# set up package directories
install -d \
"${pkgdir}/opt/${_pkgname}/" \
"${pkgdir}/usr/bin/" \
"${pkgdir}/usr/share/applications/"
# copy licenses
install -Dm644 \
-t "${pkgdir}/usr/share/licenses/${_pkgname}/" \
"./LICENSE.txt" \
"./credits.html"
# copy appstream metainfo
install -Dm644 \
-t "${pkgdir}/usr/share/metainfo/" \
"./${_pkgname}.appdata.xml"
# copy application content and remove unneeded files and dirs
cp -a ./ "${pkgdir}/opt/${_pkgname}/"
rm -r "${pkgdir}/opt/${_pkgname}/"{{add,remove}-menuitem.sh,LICENSE.txt,credits.html,"${_pkgname}.appdata.xml",icons/}
# create custom start script and disable version check
cat > "${pkgdir}/usr/bin/${_pkgname}" <<-EOF
#!/usr/bin/env bash
/opt/${_pkgname}/${_pkgname} "\$@" --no-version-check
EOF
chmod +x "${pkgdir}/usr/bin/${_pkgname}"
# copy icons
for res in 16 32 48 64 128 256; do
install -Dm644 \
"./icons/icon-${res}.png" \
"${pkgdir}/usr/share/icons/hicolor/${res}x${res}/apps/${_pkgname}.png"
done
# create menu shortcut
cat > "${pkgdir}/usr/share/applications/${_pkgname}.desktop" <<-EOF
[Desktop Entry]
Type=Application
Name=Streamlink Twitch GUI
GenericName=Twitch.tv browser for Streamlink
Comment=Browse Twitch.tv and watch streams in your videoplayer of choice
Keywords=streamlink;twitch;streaming;
Categories=AudioVideo;Network;
StartupWMClass=streamlink-twitch-gui
Exec=/usr/bin/${_pkgname}
Icon=${_pkgname}
EOF
}
|