#!/bin/sh
PKGNAME=bitrix24
SUPPORTEDARCHES="x86_64"
VERSION="$2"
DESCRIPTION="Bitrix24 desktop client from the official site"
URL="https://www.bitrix24.ru/features/desktop.php"
. $(dirname $0)/common.sh
warn_version_is_not_supported
pkgtype=$(epm print info -p)
case $pkgtype in
rpm)
PKGURL="https://dl.bitrix24.com/b24/bitrix24_desktop.rpm"
;;
*)
PKGURL="https://dl.bitrix24.com/b24/bitrix24_desktop.deb"
;;
esac
install_pkgurl
-
Vitaly Lipatov authored
epm play.d/common.sh: implement install_pkgurl and install_pack_pkgurl and use it (repack rpm packages for any distro)
155cb2e9