DistroHopper/public/dsl
2025-11-13 22:43:05 +01:00

24 lines
620 B
Text

# Template file for 'dsl'
OSNAME="dsl"
PRETTY="Damn Small Linux"
BASEDOF="Antix"
DESCRIPTION="Goal of DSL is to pack as much usable desktop distribution into an image small enough to fit on a single CD"
HOMEPAGE="https://www.damnsmalllinux.org/"
CREDENTIALS="-"
RELEASES="2024.rc7"
EDITIONS="lz4 cdrom"
function get_() {
local ISO=""
local HASH=""
local URL="https://www.damnsmalllinux.org/download"
case "$EDITION" in
lz4) ISO="dsl-${RELEASE}.lz4.iso";;
cdrom) ISO="dsl-${RELEASE}.iso";;
esac
HASH=$(web_pipe "${URL}/${ISO}.md5.txt" | cut -f1)
echo "${URL}/${ISO} ${HASH}"
}