Commit e667c5e1 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm play: add iptvnator (ALT bug 44047)

parent 9ea9ec3c
#!/bin/sh
PKGNAME=iptvnator
SUPPORTEDARCHES="x86_64 aarch64"
DESCRIPTION='IPTV player from the official site'
. $(dirname $0)/common.sh
arch=$(epm print info -a)
case "$arch" in
x86_64)
arch=amd64
;;
aarch64)
arch=arm64
;;
esac
pkgtype=deb
PKG=$(epm tool eget --list --latest https://github.com/4gray/iptvnator/releases/ "$PKGNAME*$arch.$pkgtype") || fatal "Can't get package URL"
[ -n "$PKG" ] || fatal "Can't get package URL"
epm install "$PKG"
#!/bin/sh -x
# It will run with two args: buildroot spec
BUILDROOT="$1"
SPEC="$2"
PRODUCT=iptvnator
PRODUCTDIR=/opt/IPTVnator
. $(dirname $0)/common-chromium-browser.sh
cleanup
fix_chrome_sandbox
install_deps
add_bin_link_command
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment