quickemu/public/primtux

31 lines
681 B
Plaintext

# Template file for 'primtux'
OSNAME="primtux"
PRETTY="PrimTux"
BASEDOF="Ubuntu"
DESCRIPTION="Complete and customizable GNU/Linux operating system intended for primary school students and suitable even for older hardware"
HOMEPAGE="https://primtux.fr"
CREDENTIALS="-"
RELEASES="7"
EDITIONS="2022-10"
function releases_() {
echo 7
}
function editions_() {
echo 2022-10
}
function get_() {
local HASH=""
local URL=""
local ISO=""
ISO="PrimTux${RELEASE}-amd64-${EDITION}.iso"
URL="https://sourceforge.net/projects/primtux/files/Distribution"
HASH=$(web_pipe "${URL}/${ISO}.md5" | grep "${ISO}" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}