#!/bin/sh # TODO: common place fatal() { echo "FATAL: $*" >&2 exit 1 } PKGNAME=viber if [ "$1" = "--remove" ] ; then epm remove $PKGNAME exit fi
[ "$1" != "--run" ] && echo "Viber for Linux from the official site" && exit
[ "$($DISTRVENDOR -a)" != "x86_64" ] && echo "Only x86_64 is supported" && exit 1 # the same binaries in deb and rpm PKG="https://download.cdn.viber.com/cdn/desktop/Linux/viber.deb" epm install "$PKG"