mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 09:32:21 +00:00
29 lines
707 B
Text
29 lines
707 B
Text
# Template file for 'mabox'
|
|
OSNAME="mabox"
|
|
PRETTY="Mabox Linux"
|
|
LOGO=""
|
|
ICON="mabox.svg"
|
|
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/mabox.png"
|
|
CATEGORY="Desktop, Live Medium"
|
|
BASEDOF="Manjaro"
|
|
HOMEPAGE="https://maboxlinux.org"
|
|
DESCRIPTION="Lightweight, functional and easy to customize Openbox desktop"
|
|
CREDENTIALS="-"
|
|
GPG=""
|
|
RSS=""
|
|
DW=""
|
|
|
|
function releases_() {
|
|
echo latest
|
|
}
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local ISO=""
|
|
local URL=""
|
|
URL="https://sourceforge.net/projects/mabox-linux/files/${RELEASE}/download"
|
|
URL="$(web_redirect "${URL}" | cut -d? -f1)"
|
|
ISO="$(basename "${URL}")"
|
|
HASH=$(web_pipe "https://repo.maboxlinux.org/iso/${ISO}.md5" | cut -d' ' -f1)
|
|
echo "${URL} ${HASH}"
|
|
}
|