Commit 855ab053 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm play yandexmusic: add armh support

parent e13eab59
#!/bin/sh
PKGNAME=YandexMusic
SUPPORTEDARCHES="x86_64 aarch64"
SUPPORTEDARCHES="x86_64 aarch64 armhf"
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"
......@@ -16,6 +16,9 @@ case "$arch" in
aarch64)
arch=arm64
;;
armhf)
arch=armhf
;;
*)
fatal "$arch arch is not supported"
;;
......
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