mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 09:32:21 +00:00
30 lines
831 B
Text
30 lines
831 B
Text
# Template file for 'lmde'
|
|
OSNAME="lmde"
|
|
PRETTY="Linux Mint Debian Edition"
|
|
LOGO=""
|
|
ICON="lmde.svg"
|
|
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/lmde.png"
|
|
CATEGORY="Beginner"
|
|
BASEDOF="Debian"
|
|
HOMEPAGE="https://www.linuxmint.com/download_lmde.php"
|
|
DESCRIPTION="Aims to be as similar as possible to Linux Mint, but without using Ubuntu. The package base is provided by Debian instead"
|
|
CREDENTIALS="-"
|
|
GPG=""
|
|
RSS=""
|
|
DW=""
|
|
|
|
function releases_() {
|
|
web_pipe "https://community.linuxmint.com/iso" | grep -oP 'lmde-[0-9]+' | sed 's/lmde-//' | sort -Vu
|
|
}
|
|
|
|
function editions_() {
|
|
echo cinnamon
|
|
}
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local ISO="lmde-${RELEASE}-${EDITION}-64bit.iso"
|
|
local URL="https://pub.linuxmint.io/debian"
|
|
HASH=$(web_pipe "${URL}/sha256sum.txt" | grep "${ISO}" | cut -d' ' -f1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|