blob: 1b1e0a69f6b05a345e2113c74df86106b728d497 (
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
|
# Maintainer: Nikos Toutountzoglou <nikos dot toutou at protonmail dot com>
# Contributor: RogueGirl <3a33oxx40 at mozmail dot com>
# Contributor: Laurent OF Fough
pkgname=iptvnator-bin
pkgver=1.0.0
pkgrel=3
pkgdesc="Cross-platform IPTV player application with multiple features, such as support of m3u and m3u8 playlists, favorites, TV guide, TV archive/catchup and more."
arch=('x86_64')
url="https://github.com/4gray/iptvnator"
license=('MIT')
depends=(
'cairo'
'gcc-libs'
'gdk-pixbuf2'
'glib2'
'glibc'
'gtk3'
'hicolor-icon-theme'
'libsoup3'
'openssl'
'pango'
'webkit2gtk-4.1'
)
optdepends=(
'ffmpeg: audio and video libraries'
'mpv: media player'
'vlc: media player'
)
provides=('iptvnator')
conflicts=('iptvnator')
options=()
source=("${url}/releases/download/app-v${pkgver}-4/iptvnator-${pkgver}-4-1.${CARCH}.rpm"
"https://raw.githubusercontent.com/4gray/iptvnator/refs/heads/electron/LICENSE.md")
sha256sums=('1e33f2e9eec8b477f1ab1aa769d27eb3a18ea20d9175a9ac1828d5504ab411f1'
'475a6c9a7c4fd3157f78c0afa1daab94fb81ff23dd94dad81e0f657ba5259f74')
package() {
bsdtar -xf "${srcdir}/iptvnator-${pkgver}-4-1.${CARCH}.rpm" -C "${pkgdir}"
install -Dm644 "${srcdir}/LICENSE.md" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
# vim:set ts=2 sw=2 et:
|