mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
36 lines
1.6 KiB
Text
36 lines
1.6 KiB
Text
sparkylinux
|
|
|
|
sparkylinux 7.7 minimalcli: https://sourceforge.net/projects/sparkylinux/files/cli/sparkylinux-7.7-x86_64-minimalcli.iso
|
|
sparkylinux 7.7 minimalgui: https://sourceforge.net/projects/sparkylinux/files/base/sparkylinux-7.7-x86_64-minimalgui.iso
|
|
sparkylinux 7.7 mate: https://sourceforge.net/projects/sparkylinux/files/mate/sparkylinux-7.7-x86_64-mate.iso
|
|
sparkylinux 7.7 lxqt: https://sourceforge.net/projects/sparkylinux/files/lxqt/sparkylinux-7.7-x86_64-lxqt.iso
|
|
sparkylinux 7.7 kde: https://sourceforge.net/projects/sparkylinux/files/kde/sparkylinux-7.7-x86_64-kde.iso
|
|
sparkylinux 7.7 xfce: https://sourceforge.net/projects/sparkylinux/files/xfce/sparkylinux-7.7-x86_64-xfce.iso
|
|
|
|
# Template file for 'sparkylinux'
|
|
OSNAME="sparkylinux"
|
|
PRETTY="SparkyLinux"
|
|
BASEDOF="Debian"
|
|
DESCRIPTION="Fast, lightweight and fully customizable operating system which offers several versions for different use cases"
|
|
HOMEPAGE="https://sparkylinux.org"
|
|
CREDENTIALS="-"
|
|
|
|
|
|
RELEASES="7.7"
|
|
EDITIONS="xfce minimalgui minimalcli mate lxqt kde"
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local ISO=""
|
|
local URL=""
|
|
ISO="sparkylinux-${RELEASE}-x86_64-${EDITION}.iso"
|
|
case ${EDITION} in
|
|
minimalcli) URL="https://sourceforge.net/projects/sparkylinux/files/cli";;
|
|
minimalgui) URL="https://sourceforge.net/projects/sparkylinux/files/base";;
|
|
*) URL="https://sourceforge.net/projects/sparkylinux/files/${EDITION}";;
|
|
esac
|
|
HASH=$(web_pipe "${URL}/${ISO}.allsums.txt" | head -n 2 | grep 'iso' | cut -d' ' -f1)
|
|
echo "${URL}/${ISO}" "${HASH}"
|
|
}
|
|
|
|
|