Commit 619231e9 authored by Vitaly Lipatov's avatar Vitaly Lipatov

add support for epm play yandex-browser beta

parent 32396b6a
#!/bin/sh
BRANCH=stable
PKGNAME=yandex-browser-stable
PRODUCTDIR=/opt/yandex/browser
DESCRIPTION="Yandex browser from the official site"
if [ "$1" = "--remove" ] ; then
epm remove $PKGNAME
epm remove $PKGNAME-codecs-ffmpeg-extra
exit
if [ "$2" = "beta" ] ; then
BRANCH=beta
PRODUCTDIR=/opt/yandex/browser-$BRANCH
fi
PKGNAME=yandex-browser-$BRANCH
. $(dirname $0)/common.sh
[ "$($DISTRVENDOR -a)" != "x86_64" ] && echo "Only x86_64 is supported" && exit 1
......
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