mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 09:32:21 +00:00
42 lines
1.1 KiB
Text
42 lines
1.1 KiB
Text
# Template file for 'siduction'
|
|
OSNAME="siduction"
|
|
PRETTY="siduction"
|
|
LOGO=""
|
|
ICON="siduction.svg"
|
|
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/siduction.png"
|
|
CATEGORY="advanced"
|
|
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="-"
|
|
GPG=""
|
|
RSS=""
|
|
DW=""
|
|
MAGNET=""
|
|
CHAT=""
|
|
|
|
RELEASES="Shine_on"
|
|
EDITIONS="kde lxqt nox xfce xorg"
|
|
QEMU_ARCH="amd64"
|
|
|
|
releases_() {
|
|
echo $(web_pipe "https://mirror.math.princeton.edu/pub/siduction/iso/" | grep folder | cut -d'"' -f8 | tr -d '/')
|
|
}
|
|
|
|
editions_() {
|
|
echo kde lxqt nox xfce xorg
|
|
}
|
|
|
|
get_() {
|
|
local RELEASE="Shine_on"
|
|
local HASH=""
|
|
local DATE=""
|
|
local ISO=""
|
|
local URL=""
|
|
URL="https://mirror.math.princeton.edu/pub/siduction/iso/${RELEASE}/${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}-${RELEASE}-${EDITION}-amd64-${DATE}.iso"
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|