From 4e147aae566ef2650bce1950b5671386fccaab01 Mon Sep 17 00:00:00 2001 From: zenobit Date: Wed, 27 Dec 2023 10:24:43 +0100 Subject: [PATCH] Add Primtux [upstream PR](https://github.com/quickemu-project/quickemu/pull/887) --- quickget | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/quickget b/quickget index 173c1ff..8a63526 100755 --- a/quickget +++ b/quickget @@ -117,6 +117,7 @@ function pretty_name() { oraclelinux) PRETTY_NAME="Oracle Linux";; peppermint) PRETTY_NAME="PeppermintOS";; popos) PRETTY_NAME="Pop!_OS";; + primtux) PRETTY_NAME="Primtux";; pureos) PRETTY_NAME="PureOS";; reactos) PRETTY_NAME="ReactOS";; rebornos) PRETTY_NAME="RebornOS";; @@ -302,6 +303,7 @@ function os_support() { peppermint \ popos \ porteus \ + primtux \ reactos \ rebornos \ rockylinux \ @@ -407,6 +409,7 @@ function os_homepage(){ peppermint) HOMEPAGE="https://peppermintos.com/";; popos) HOMEPAGE="https://pop.system76.com/";; porteus) HOMEPAGE="http://www.porteus.org/";; + primtux) HOMEPAGE="https://primtux.fr/";; reactos) HOMEPAGE="https://reactos.org/";; rebornos) HOMEPAGE="https://rebornos.org/";; rockylinux) HOMEPAGE="https://rockylinux.org/";; @@ -928,6 +931,14 @@ function editions_porteus() { echo cinnamon gnome kde lxde lxqt mate openbox xfce } +function releases_primtux() { + echo 7 +} + +function editions_primtux() { + echo 2022-10 +} + function releases_reactos() { echo latest } @@ -2557,6 +2568,17 @@ function get_porteus() { echo "${URL}/${ISO} ${HASH}" } +function get_primtux() { + local HASH="" + local URL="" + local ISO="" + + ISO="PrimTux${RELEASE}-amd64-${EDITION}.iso" + URL="https://sourceforge.net/projects/primtux/files/Distribution" + HASH=$(wget -q -O- "${URL}/${ISO}.md5" | grep "${ISO}" | cut -d' ' -f1) + echo "${URL}/${ISO} ${HASH}" +} + function get_reactos() { local HASH="" local URL=""