DistroHopper/public/peppermint
2026-05-27 17:00:06 +02:00

50 lines
1.2 KiB
Text

# Template file for 'peppermint'
OSNAME="peppermint"
PRETTY="PeppermintOS"
LOGO=""
ICON="peppermintos.svg"
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/peppermint.png"
CATEGORY="Beginner"
BASEDOF="Devuan"
DESCRIPTION="Provides a user with the opportunity to build the system that best fits their needs. While at the same time providing a functioning OS with minimum hassle out of the box"
HOMEPAGE="https://peppermintos.com"
CREDENTIALS="-"
GPG=""
RSS=""
DW=""
MAGNET=""
CHAT=""
RELEASES="latest"
EDITIONS="debian-gnome debian-xfce devuan-gnome devuan-xfce"
QEMU_ARCH="amd64"
releases_() {
echo latest
}
editions_() {
echo devuan-xfce devuan-gnome debian-xfce debian-gnome
}
get_() {
local HASH=""
local ISO=""
local URL="https://sourceforge.net/projects/peppermintos/files/isos"
case ${EDITION} in
devuan-xfce)
ISO="PeppermintOS-devuan_64_xfce.iso"
URL="${URL}/XFCE";;
debian-xfce)
ISO="PeppermintOS-Debian-64.iso"
URL="${URL}/XFCE";;
devuan-gnome)
ISO="PeppermintOS-devuan_64_gfb.iso"
URL="${URL}/Gnome_FlashBack";;
debian-gnome)
ISO="PeppermintOS-Debian_64_gfb.iso"
URL="${URL}/Gnome_FlashBack";;
esac
HASH=$(web_pipe "${URL}/${ISO}-sha512.checksum" | grep "${ISO}" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}