Skip to content

Commit

Permalink
Add Archcraft
Browse files Browse the repository at this point in the history
  • Loading branch information
mikabak authored and flexiondotorg committed Oct 5, 2022
1 parent 7db5167 commit 72432bf
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ function pretty_name() {
alpine) PRETTY_NAME="Alpine Linux";;
android) PRETTY_NAME="Android x86";;
archlinux) PRETTY_NAME="Arch Linux";;
archcraft) PRETTY_NAME="Archcraft";;
arcolinux) PRETTY_NAME="Arco Linux";;
cachyos) PRETTY_NAME="CachyOS";;
centos-stream) PRETTY_NAME="CentOS Stream";;
Expand Down Expand Up @@ -162,6 +163,7 @@ function os_support() {
alpine \
android \
archlinux \
archcraft \
arcolinux \
batocera \
cachyos \
Expand Down Expand Up @@ -236,6 +238,10 @@ function releases_archlinux() {
echo latest
}

function releases_archcraft() {
echo latest
}

function releases_arcolinux() {
echo v21.09.11 v21.11.05 v22.01.10
}
Expand Down Expand Up @@ -867,6 +873,16 @@ function get_archlinux() {
echo "${URL}/${ISO} ${HASH}"
}

function get_archcraft() {
local HASH=""
local URL=""
local TMPURL=""

TMPURL=$(wget -q -S -O- --max-redirect=0 "https://sourceforge.net/projects/archcraft/files/latest/download" 2>&1 | grep -i Location | cut -d' ' -f4)
URL=${TMPURL%\?*}
echo "${URL} ${HASH}"
}

function get_arcolinux() {
local EDITION="${1:-}"
local HASH=""
Expand Down

0 comments on commit 72432bf

Please sign in to comment.