mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Add Primtux
[upstream PR](https://github.com/quickemu-project/quickemu/pull/887)
This commit is contained in:
parent
45851f7574
commit
4e147aae56
1 changed files with 22 additions and 0 deletions
22
quickget
22
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=""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue