Commit 25569be5 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm play librewolf: fix download URL

parent 043fcb8a
...@@ -6,13 +6,15 @@ DESCRIPTION="LibreWolf - a custom version of Firefox, focused on privacy, securi ...@@ -6,13 +6,15 @@ DESCRIPTION="LibreWolf - a custom version of Firefox, focused on privacy, securi
. $(dirname $0)/common.sh . $(dirname $0)/common.sh
arch=x86_64
pkgtype=$(epm print info -p) pkgtype=$(epm print info -p)
case $pkgtype in case $pkgtype in
rpm) rpm)
PKG="https://rpm.librewolf.net/pool/librewolf*.rpm" PKG="https://rpm.librewolf.net/pool/librewolf*.rpm"
;; ;;
deb) deb)
PKG="https://deb.librewolf.net/pool/focal/main/libr/librewolf/librewolf_*all.deb" PKG="https://deb.librewolf.net/pool/focal/librewolf-*$arch.deb"
;; ;;
*) *)
fatal "Package target $pkgtype is not supported yet" fatal "Package target $pkgtype is not supported yet"
...@@ -22,7 +24,7 @@ esac ...@@ -22,7 +24,7 @@ esac
case "$(epm print info -s)" in case "$(epm print info -s)" in
alt) alt)
# uses old glibc needed for ALT p10 # uses old glibc needed for ALT p10
PKG="https://deb.librewolf.net/pool/focal/main/libr/librewolf/librewolf_*all.deb" PKG="https://deb.librewolf.net/pool/focal/librewolf-*$arch.deb"
epm install --repack $PKG epm install --repack $PKG
exit exit
;; ;;
......
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