mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
23 lines
628 B
Text
23 lines
628 B
Text
INFO="Bodhi|Debian,Ubuntu||https://www.bodhilinux.com/|Lightweight distribution featuring the fast & fully customizable Moksha Desktop.";;
|
|
|
|
function releases_bodhi() {
|
|
echo 7.0.0
|
|
}
|
|
|
|
function editions_bodhi() {
|
|
echo standard hwe s76
|
|
}
|
|
|
|
function get_bodhi() {
|
|
local EDITION="${1:-}"
|
|
local HASH=""
|
|
local ISO=""
|
|
local URL="https://sourceforge.net/projects/bodhilinux/files/${RELEASE}"
|
|
|
|
case ${EDITION} in
|
|
standard) ISO="bodhi-${RELEASE}-64.iso";;
|
|
*) ISO="bodhi-${RELEASE}-64-${EDITION}.iso";;
|
|
esac
|
|
HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | cut_1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|