📦 Big Linux Thanks to @ruscher

Signed-off-by: zenobit <zenobit@disroot.org>
This commit is contained in:
zenobit 2024-01-19 12:20:25 +01:00 committed by Martin Wimpress
parent 0858f31701
commit eb5fe7aedc
1 changed files with 10 additions and 0 deletions

View File

@ -319,6 +319,7 @@ function os_homepages(){
athenaos) HOMEPAGE="https://athenaos.org/";; athenaos) HOMEPAGE="https://athenaos.org/";;
batocera) HOMEPAGE="https://batocera.org/";; batocera) HOMEPAGE="https://batocera.org/";;
bazzite) HOMEPAGE="https://bazzite.gg/";; bazzite) HOMEPAGE="https://bazzite.gg/";;
biglinux) HOMEPAGE="https://www.biglinux.com.br/";;
blendos) HOMEPAGE="https://blendos.co/";; blendos) HOMEPAGE="https://blendos.co/";;
bodhi) HOMEPAGE="https://www.bodhilinux.com/";; bodhi) HOMEPAGE="https://www.bodhilinux.com/";;
bunsenlabs) HOMEPAGE="https://www.bunsenlabs.org/";; bunsenlabs) HOMEPAGE="https://www.bunsenlabs.org/";;
@ -1420,6 +1421,15 @@ function get_athenaos() {
echo "${URL}/${ISO} ${HASH}" echo "${URL}/${ISO} ${HASH}"
} }
function get_biglinux() {
local HASH=""
local ISO=""
local URL="https://iso.biglinux.com.br/"
ISO=$(grep -Eo 'biglinux_[0-9]{4}(-[0-9]{2}){2}_k[0-9]{2,3}.iso' <(wget -q -O- ${URL}) | sort -u | tail -n2 | head -n1)
HASH=$(curl -s ${URL}${ISO}.md5 | grep -Eo '[[:alnum:]]{32}')
echo "${URL}${ISO} ${HASH}"
}
function get_bunsenlabs() { function get_bunsenlabs() {
local HASH="" local HASH=""
local ISO="beryllium-1-amd64.hybrid.iso" local ISO="beryllium-1-amd64.hybrid.iso"