antix update

This commit is contained in:
zenobit 2025-02-14 01:59:27 +01:00
parent a2dc73df94
commit 1486422d2d
2 changed files with 9 additions and 3 deletions

View File

@ -7,7 +7,7 @@ HOMEPAGE="https://antixlinux.com"
CREDENTIALS="-"
function releases_() {
echo 23.1 23 22 21
echo 23.2 23.1 23 22 21
}
function editions_() {
@ -15,6 +15,11 @@ function editions_() {
}
function get_() {
local HASH=""
local ISO="antiX-${RELEASE}"
local README="README"
local URL="https://sourceforge.net/projects/antix-linux/files/Final/antiX-${RELEASE}"
# antiX uses a different URL and ISO naming for runit editions
if [[ "${EDITION}" == *"runit"* ]];then
ISO+="-runit"
@ -30,5 +35,6 @@ function get_() {
full-*) ISO+="_x64-full.iso";;
net-*) ISO+="-net_x64-net.iso";;
esac
HASH=$(web_pipe "${URL}/${README}.txt" | grep "${ISO}" | cut -d' ' -f1 | head -n 1)
echo "${URL}/${ISO} ${HASH}"
}
}

View File

@ -5,5 +5,5 @@ BASEDOF="Debian"
DESCRIPTION="Fast, lightweight and easy to install systemd-free linux live CD distribution based on Debian Stable for Intel-AMD x86 compatible systems"
HOMEPAGE="https://antixlinux.com"
CREDENTIALS="-"
RELEASES="23.1 23 22 21"
RELEASES="23.2 23.1 23 22 21"
EDITIONS="net-sysv net-runit full-sysv full-runit core-sysv core-runit base-sysv base-runit"