DistroHopper/public/pclinuxos
2026-04-17 00:19:15 +02:00

28 lines
901 B
Text

# Template file for 'pclinuxos'
OSNAME="pclinuxos"
PRETTY="PCLinuxOS"
BASEDOF="Void,Ubuntu,Debian,Slackware"
DESCRIPTION="Free, easy to use Linux-based Operating System for x86_64 desktops or laptops"
HOMEPAGE="https://www.pclinuxos.com"
CREDENTIALS="-"
RELEASES="2025.09"
EDITIONS="xfce mate kde-darkstar kde"
function get_() {
# shellcheck disable=SC2155
case ${EDITION} in
mate) RELEASE="${RELEASE//./-}";;
# in case an edition is added that uses the mate style and sorts higher
kde|kde-darkstar) RELEASE="${RELEASE//-/.}";;
xfce) RELEASE="${RELEASE//-/.}";;
*) ;;
esac
# shellcheck disable=SC2155
local HASH="$(web_pipe "${URL}/pclinuxos64-${EDITION}-${RELEASE}.md5sum" | head -c 32)"
local ISO="pclinuxos64-${EDITION}-${RELEASE}.iso"
local URL="https://ftp.fau.de/pclinuxos/pclinuxos/iso"
echo "${URL}/${ISO} ${HASH}"
}