Add Archcraft

This commit is contained in:
Mikael Bak 2022-10-03 23:23:19 +02:00 committed by Martin Wimpress
parent 7db5167cac
commit 72432bfad7
1 changed files with 16 additions and 0 deletions

View File

@ -34,6 +34,7 @@ function pretty_name() {
alpine) PRETTY_NAME="Alpine Linux";; alpine) PRETTY_NAME="Alpine Linux";;
android) PRETTY_NAME="Android x86";; android) PRETTY_NAME="Android x86";;
archlinux) PRETTY_NAME="Arch Linux";; archlinux) PRETTY_NAME="Arch Linux";;
archcraft) PRETTY_NAME="Archcraft";;
arcolinux) PRETTY_NAME="Arco Linux";; arcolinux) PRETTY_NAME="Arco Linux";;
cachyos) PRETTY_NAME="CachyOS";; cachyos) PRETTY_NAME="CachyOS";;
centos-stream) PRETTY_NAME="CentOS Stream";; centos-stream) PRETTY_NAME="CentOS Stream";;
@ -162,6 +163,7 @@ function os_support() {
alpine \ alpine \
android \ android \
archlinux \ archlinux \
archcraft \
arcolinux \ arcolinux \
batocera \ batocera \
cachyos \ cachyos \
@ -236,6 +238,10 @@ function releases_archlinux() {
echo latest echo latest
} }
function releases_archcraft() {
echo latest
}
function releases_arcolinux() { function releases_arcolinux() {
echo v21.09.11 v21.11.05 v22.01.10 echo v21.09.11 v21.11.05 v22.01.10
} }
@ -867,6 +873,16 @@ function get_archlinux() {
echo "${URL}/${ISO} ${HASH}" 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() { function get_arcolinux() {
local EDITION="${1:-}" local EDITION="${1:-}"
local HASH="" local HASH=""