mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
14 lines
447 B
Text
14 lines
447 B
Text
INFO="Linux Lite|Debian,Ubuntu||https://www.linuxliteos.com/|Your first simple, fast and free stop in the world of Linux.";;
|
|
|
|
function releases_linuxlite() {
|
|
echo 6.6 6.4 6.2 6.0
|
|
}
|
|
|
|
function get_linuxlite() {
|
|
local HASH=""
|
|
local ISO="linux-lite-${RELEASE}-64bit.iso"
|
|
local URL="https://sourceforge.net/projects/linux-lite/files/${RELEASE}"
|
|
|
|
HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | cut_1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|