25 lines
481 B
Plaintext
25 lines
481 B
Plaintext
# Template file for 'archcraft'
|
|
OSNAME="archcraft"
|
|
PRETTY="Archcraft"
|
|
BASEDOF="Arch"
|
|
DESCRIPTION="Yet another minimal Linux distribution, based on Arch Linux"
|
|
HOMEPAGE="https://archcraft.io"
|
|
CREDENTIALS="-"
|
|
|
|
|
|
RELEASES="latest"
|
|
|
|
|
|
function releases_() {
|
|
echo latest
|
|
}
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local URL=""
|
|
URL="https://sourceforge.net/projects/archcraft/files/${RELEASE}/download"
|
|
URL="$(web_redirect "${URL}" | cut -d? -f1)"
|
|
echo "${URL} ${HASH}"
|
|
}
|
|
|