mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 09:32:21 +00:00
33 lines
863 B
Text
33 lines
863 B
Text
# Template file for 'porteus'
|
|
OSNAME="porteus"
|
|
PRETTY="Porteus"
|
|
LOGO=""
|
|
ICON="porteus.svg"
|
|
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/porteus.png"
|
|
CATEGORY="Lightweight"
|
|
BASEDOF="Slackware"
|
|
HOMEPAGE="http://www.porteus.org"
|
|
DESCRIPTION="Complete linux operating system that is optimized to run from CD, USB flash drive, hard drive, or other bootable storage media"
|
|
CREDENTIALS="-"
|
|
GPG=""
|
|
RSS=""
|
|
DW=""
|
|
|
|
function releases_() {
|
|
echo 5.1 5.01 5.0 4.0 3.2.2 3.2
|
|
}
|
|
|
|
function editions_() {
|
|
echo cinnamon kde lxde lxqt mate openbox xfce
|
|
}
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local ISO=""
|
|
local URL=""
|
|
edition="${EDITION~~}"
|
|
ISO="Porteus-${edition}-v${RELEASE}-x86_64.iso"
|
|
URL="https://ftp.nluug.nl/os/Linux/distr/porteus/x86_64/Porteus-v${RELEASE}"
|
|
HASH=$(web_pipe "${URL}/sha256sums.txt" | grep "${ISO}" | cut -d' ' -f1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|