blob: 32d7c5a92831c8758e6c0555e5f8f7d2da2d28f3 (
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
|
# Maintainer: Frédéric Lachapelle <frederic.lachapelle7@gmail.com>
pkgname=open-tv-bin
pkgver=1.4.1
pkgrel=1
pkgdesc='Fast and powerful IPTV app'
arch=('x86_64')
url='https://github.com/fredolx/open-tv'
license=('GPL2')
depends=(
'mpv'
'yt-dlp'
'webkit2gtk-4.1'
'ffmpeg'
)
options=(
!emptydirs
)
source=(
"https://github.com/Fredolx/open-tv/releases/download/v${pkgver}/Open.TV_${pkgver}_amd64.deb"
)
sha512sums=('393303156707c87c6f8fb7b95b864ed532ff537f6597a1abc1c9eaaf331f45ce354fa80f50fa6286ee8ef72ae70b33d6b56c1f25018fe1a0d2a8459d4d5e3783')
prepare() {
bsdtar -xf "${srcdir}/data.tar.xz" -C "${srcdir}/"
}
package() {
cp -a \
"${srcdir}/usr/" \
"${pkgdir}/usr/"
}
|