mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
20 lines
605 B
Text
20 lines
605 B
Text
# Template file for 'rhinolinux'
|
|
OSNAME="rhinolinux"
|
|
PRETTY="Rhino Linux"
|
|
BASEDOF="Ubuntu"
|
|
DESCRIPTION="Ubuntu-based, rolling release distribution, with Pacstall & XFCE at its core"
|
|
HOMEPAGE="https://rhinolinux.org"
|
|
CREDENTIALS="-"
|
|
|
|
|
|
RELEASES="2025.3 2025.2 2025.1 2024.2 2024.1 2023.4 2023.3 2023.2 2023.1"
|
|
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local ISO="Rhino-Linux-${RELEASE}-amd64.iso"
|
|
local URL="https://sourceforge.net/projects/rhino-linux-builder/files/${RELEASE}"
|
|
HASH=$(web_pipe "${URL}/${ISO}.sha256" | grep "${ISO}" | cut -d' ' -f1 | head -n 1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|