From 6e827af6f286bcab7ec20964fe43fb7289a240a5 Mon Sep 17 00:00:00 2001 From: zenobit Date: Sun, 12 Mar 2023 01:53:51 +0100 Subject: [PATCH] siduction --- quickget | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/quickget b/quickget index d6d8a7a..a48144a 100755 --- a/quickget +++ b/quickget @@ -208,6 +208,7 @@ function os_support() { reactos \ rebornos \ rockylinux \ + siduction \ slackware \ solus \ tails \ @@ -505,6 +506,14 @@ function editions_rockylinux() { "dvd (dvd1 prior to 9.0)" } +function releases_siduction() { + echo latest +} + +function editions_siduction() { + echo kde lxqt nox xfce xorg +} + function releases_slackware() { echo 14.2 15.0 } @@ -1496,6 +1505,17 @@ function get_rockylinux() { echo "${URL}/${ISO} ${HASH}" } +function get_siduction() { + local HASH="" + local DATE="" + local ISO="" + local URL="https://mirrors.dotsrc.org/siduction/iso/Masters_of_War/${EDITION}" + DATE=$(wget -q -O- "${URL}"| grep .iso.md5 | cut -d'-' -f6 | cut -d'.' -f1) + HASH=$(wget -q -O- "${URL}/${ISO}.md5" | cut -d' ' -f1) + ISO="siduction-22.1.1-Masters_of_War-${EDITION}-amd64-${DATE}.iso" + echo "${URL}/${ISO} ${HASH}" +} + function get_slackware() { local HASH="" local ISO="slackware64-${RELEASE}-install-dvd.iso"