blob: 814a706bb7a5e847df2cc3f209c9f96fad63580f (
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
|
# Maintainer: Nikos Toutountzoglou <nikos.toutou@protonmail.com>
# Contributor: RogueGirl <3a33oxx40 at mozmail dot com>
# Contributor: Laurent OF Fough
pkgname=iptvnator-bin
pkgver=0.21.0
pkgrel=1
pkgdesc="Video player for IPTV playlists (m3u, m3u8) with EPG, favorites, and TV archive support."
arch=('x86_64')
url="https://github.com/4gray/iptvnator"
license=('MIT')
depends=(
'alsa-lib'
'at-spi2-core'
'dbus'
'expat'
'glib2'
'gtk3'
'libdrm'
'libnotify'
'libx11'
'libxcb'
'libxcomposite'
'libxdamage'
'libxext'
'libxfixes'
'libxkbcommon'
'libxrandr'
'mesa'
'nspr'
'nss'
)
optdepends=(
'libappindicator-gtk3: tray icon support'
'ffmpeg: for extended codec support'
)
provides=('iptvnator')
conflicts=('iptvnator')
options=('!strip' '!debug')
source=("iptvnator-${pkgver}.pacman::${url}/releases/download/v${pkgver}/iptvnator-${pkgver}-linux-x64.pacman")
sha256sums=('3a1064035819789ad9a8464f25fb73683cbccb62fa1cc068164fc7d8dda8f18c')
package() {
bsdtar -xf "iptvnator-${pkgver}.pacman" -C "${pkgdir}"
install -d "${pkgdir}/usr/bin"
ln -s "/opt/IPTVnator/iptvnator" "${pkgdir}/usr/bin/iptvnator"
install -Dm644 "${pkgdir}/opt/IPTVnator/LICENSE.electron.txt" \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
rm -f "${pkgdir}/.INSTALL" \
"${pkgdir}/.MTREE" \
"${pkgdir}/.PKGINFO"
}
# vim:set ts=2 sw=2 et:
|