mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 09:32:21 +00:00
38 lines
795 B
Text
38 lines
795 B
Text
# Template file for 'primtux'
|
|
OSNAME="primtux"
|
|
PRETTY="PrimTux"
|
|
LOGO=""
|
|
ICON="primtux.png"
|
|
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/primtux.png"
|
|
CATEGORY="Beginner"
|
|
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="-"
|
|
GPG=""
|
|
RSS=""
|
|
DW=""
|
|
MAGNET=""
|
|
CHAT=""
|
|
|
|
RELEASES="7"
|
|
EDITIONS="2022-10"
|
|
QEMU_ARCH="amd64"
|
|
|
|
releases_() {
|
|
echo 7
|
|
}
|
|
|
|
editions_() {
|
|
echo 2022-10
|
|
}
|
|
|
|
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}"
|
|
}
|