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
siduction
|
|
|
|
siduction latest kde: https://mirrors.dotsrc.org/siduction/iso/Shine_on/kde/siduction-2025.1.0-Shine_on-kde-amd64-202503241412.iso
|
|
siduction latest lxqt: https://mirrors.dotsrc.org/siduction/iso/Shine_on/lxqt/siduction-2024.1.0-Shine_on-lxqt-amd64-202412261736.iso
|
|
siduction latest nox: https://mirrors.dotsrc.org/siduction/iso/Shine_on/nox/siduction-2024.1.0-Shine_on-nox-amd64-202412261752.iso
|
|
siduction latest xfce: https://mirrors.dotsrc.org/siduction/iso/Shine_on/xfce/siduction-2024.1.0-Shine_on-xfce-amd64-202412261728.iso
|
|
siduction latest xorg: https://mirrors.dotsrc.org/siduction/iso/Shine_on/xorg/siduction-2024.1.0-Shine_on-xorg-amd64-202412261745.iso
|
|
|
|
# Template file for 'siduction'
|
|
OSNAME="siduction"
|
|
PRETTY="siduction"
|
|
BASEDOF="Debian"
|
|
DESCRIPTION="Operating system based on the Linux kernel and the GNU project. In addition, there are applications and libraries from Debian"
|
|
HOMEPAGE="https://siduction.org"
|
|
CREDENTIALS="-"
|
|
|
|
|
|
RELEASES="latest"
|
|
EDITIONS="xorg xfce nox lxqt kde"
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local DATE=""
|
|
local ISO=""
|
|
local NAME=""
|
|
local URL=""
|
|
NAME=$(web_pipe "https://mirror.math.princeton.edu/pub/siduction/iso/" | grep folder | cut -d'"' -f8 | tr -d '/')
|
|
URL="https://mirrors.dotsrc.org/siduction/iso/${NAME}/${EDITION}"
|
|
DATE=$(web_pipe "${URL}"| grep .iso.md5 | cut -d'-' -f6 | cut -d'.' -f1)
|
|
HASH=$(web_pipe "${URL}/${ISO}.md5" | cut -d' ' -f1)
|
|
VERSION=$(web_pipe "${URL}"| grep .iso.md5 | cut -d'-' -f2)
|
|
ISO="siduction-${VERSION}-${NAME}-${EDITION}-amd64-${DATE}.iso"
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|
|
|