Commit a144b74a authored by Maxim Slipenko's avatar Maxim Slipenko Committed by Vitaly Lipatov

epm play: add yandexmusic

parent ddbc6387
#!/bin/sh
PKGNAME=YandexMusic
SUPPORTEDARCHES="x86_64 aarch64"
VERSION="$2"
DESCRIPTION="Native Yandex Music client for Linux. Made with OSX/Windows beta client repacking"
URL="https://github.com/cucumber-sp/yandex-music-linux/releases"
. $(dirname $0)/common.sh
arch="$(epm print info -a)"
case "$arch" in
x86_64)
arch=x64
;;
aarch64)
arch=arm64
;;
*)
fatal "$arch arch is not supported"
;;
esac
PKGURL=$(epm tool eget --list --latest https://github.com/cucumber-sp/yandex-music-linux/releases "yandexmusic.$VERSION.$arch.rpm")
epm install --repack $PKGURL
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