Skip to content

Commit

Permalink
Add SpiralLinux
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit authored and flexiondotorg committed Oct 19, 2023
1 parent ad0f1f2 commit 265be79
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ function os_support() {
siduction \
slackware \
solus \
spiral \
tails \
tinycore \
trisquel \
Expand Down Expand Up @@ -633,6 +634,14 @@ function editions_solus() {
echo Budgie GNOME MATE Plasma
}

function releases_spiral() {
echo latest
}

function editions_spiral() {
echo Plasma XFCE Mate LXQt Gnome Budgie Cinnamon Builder
}

function releases_tails() {
echo stable
}
Expand Down Expand Up @@ -1861,6 +1870,16 @@ function get_solus() {
echo "${URL}/${ISO} ${HASH}"
}

function get_spiral() {
local EDITION="${1:-}"
local HASH=""
local ISO="SpiralLinux_${EDITION}_12.231005_x86-64.iso"
local URL="https://sourceforge.net/projects/spirallinux/files/12.231005"

HASH=$(wget -q -O- 'https://sourceforge.net/projects/spirallinux/rss?path=/' | grep "${ISO}" | grep 'md5' | cut -d'<' -f3 | cut -d'>' -f2)
echo "${URL}/${ISO}" "${HASH}"
}

function get_tails() {
local ISO=""
local JSON=""
Expand Down

0 comments on commit 265be79

Please sign in to comment.