DistroHopper/templates/pclinuxos
2026-05-27 17:00:06 +02:00

31 lines
881 B
Text

# Template file for 'pclinuxos'
OSNAME="pclinuxos"
PRETTY="PCLinuxOS"
LOGO=""
ICON="pclinuxos.svg"
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/pclinuxos.png"
CATEGORY="Beginner"
ORIGIN="Independent"
HOMEPAGE="https://www.pclinuxos.com"
DESCRIPTION="Free, easy to use Linux-based Operating System for x86_64 desktops or laptops"
CREDENTIALS="-"
GPG=""
RSS=""
DW=""
function releases_() {
# shellcheck disable=SC2046
echo $(web_pipe "https://ftp.fau.de/pclinuxos/iso" | grep -oP 'pclinuxos64-\K[^\-]+-\K[0-9]+\.[0-9]+' | sort -ur | head -n 1)
}
function editions_() {
echo kde kde-darkstar mate xfce
}
function get_() {
local URL="https://ftp.fau.de/pclinuxos/iso"
# shellcheck disable=SC2155
local HASH="$(web_pipe "${URL}/pclinuxos64-${EDITION}-${RELEASE}.md5sum" | head -c 32)"
local ISO="pclinuxos64-${EDITION}-${RELEASE}.iso"
echo "${URL}/${ISO} ${HASH}"
}