mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
28 lines
901 B
Text
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}"
|
|
}
|
|
|