Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Archcraft #565

Merged
merged 1 commit into from
Oct 5, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 16 additions & 0 deletions quickget
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