Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SpiralLinux #788

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ function os_support() {
siduction \
slackware \
solus \
spiral \
tails \
trisquel \
truenas-core \
Expand Down Expand Up @@ -613,6 +614,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 @@ -1787,6 +1796,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