blob: 84b378bde35bde362ac850d718dc039becb903c6 (
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
73
74
75
76
77
78
|
# Maintainer: Nikos Toutountzoglou <nikos dot toutou at protonmail dot com>
pkgname=iptvnator
pkgver=0.16.0
pkgrel=1
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=(
'alsa-lib'
'at-spi2-core'
'cairo'
'dbus'
'expat'
'gcc-libs'
'glib2'
'glibc'
'gtk3'
'hicolor-icon-theme'
'libcups'
'libdrm'
'libx11'
'libxcb'
'libxcomposite'
'libxcrypt-compat'
'libxdamage'
'libxext'
'libxfixes'
'libxkbcommon'
'libxrandr'
'mesa'
'nspr'
'nss'
'pango'
)
makedepends=('npm')
optdepends=('ffmpeg: audio and video libraries'
'mpv: media player'
'vlc: media player')
provides=('iptvnator')
conflicts=('iptvnator')
options=(!emptydirs)
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('6f87ad13323456964b357eca843610a615aadba362986d8db7a41ada1ff9306e')
build() {
cd "${pkgname}-${pkgver}"
# Fix for '.git can't be found' error
touch .git
# Install all dependencies
npm i --cache "${srcdir}/npm-cache"
# Build
npm run build -- -c production
npm exec electron-builder -- -l pacman
# Unpack compressed pacman file
mkdir -p release/pacman
bsdtar -xf release/${pkgname}-${pkgver}.pacman -C release/pacman
}
package() {
cd "${pkgname}-${pkgver}"
install -d "${pkgdir}/opt/IPTVnator" "${pkgdir}/usr/share" "${pkgdir}/usr/bin"
# Install application
cp -a --no-preserve='ownership' release/pacman/opt/IPTVnator "${pkgdir}/opt"
ln -s "/opt/IPTVnator/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
# Install icons
cp -a --no-preserve='ownership' release/pacman/usr/share/icons "${pkgdir}/usr/share"
# Install desktop file
install -Dm644 "release/pacman/usr/share/applications/${pkgname}.desktop" \
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
# Install license
install -Dm644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
# Remove references to $pkgdir
find "${pkgdir}" -type f -name package.json -print0 | xargs -0 sed -i "/_where/d"
}
# vim:set ts=2 sw=2 et:
|