mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
34 lines
1.3 KiB
Text
34 lines
1.3 KiB
Text
ghostbsd
|
|
|
|
ghostbsd 25.01-R14.2p1 mate: https://download.ghostbsd.org/releases/amd64/25.01-R14.2p1/GhostBSD-25.01-R14.2p1.iso
|
|
ghostbsd 25.01-R14.2p1 xfce: https://download.ghostbsd.org/releases/amd64/25.01-R14.2p1/GhostBSD-25.01-R14.2p1-XFCE.iso
|
|
ghostbsd 24.10.1 mate: https://download.ghostbsd.org/releases/amd64/24.10.1/GhostBSD-24.10.1.iso
|
|
ghostbsd 24.10.1 xfce: https://download.ghostbsd.org/releases/amd64/24.10.1/GhostBSD-24.10.1-XFCE.iso
|
|
ghostbsd 24.07.3 mate: https://download.ghostbsd.org/releases/amd64/24.07.3/GhostBSD-24.07.3.iso
|
|
ghostbsd 24.07.3 xfce: https://download.ghostbsd.org/releases/amd64/24.07.3/GhostBSD-24.07.3-XFCE.iso
|
|
|
|
# Template file for 'ghostbsd'
|
|
OSNAME="ghostbsd"
|
|
PRETTY="GhostBSD"
|
|
BASEDOF="FreeBSD"
|
|
DESCRIPTION="Simple, elegant desktop BSD Operating System"
|
|
HOMEPAGE="https://www.ghostbsd.org"
|
|
CREDENTIALS="-"
|
|
freebsd
|
|
|
|
RELEASES="25.01-R14.2p1 24.10.1 24.07.3"
|
|
EDITIONS="xfce mate"
|
|
|
|
function get_() {
|
|
local ISO=""
|
|
local URL="https://download.ghostbsd.org/releases/amd64/${RELEASE}"
|
|
local HASH=""
|
|
case ${EDITION} in
|
|
mate) ISO="GhostBSD-${RELEASE}.iso";;
|
|
xfce) ISO="GhostBSD-${RELEASE}-XFCE.iso";;
|
|
esac
|
|
HASH=$(web_pipe "${URL}/${ISO}.sha256" | grep "${ISO}" | cut -d' ' -f4)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|
|
|