1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-27 08:48:33 +00:00
morpheus/build
2013-09-06 09:50:29 +01:00

28 lines
198 B
Bash
Executable File

#!/bin/sh
#
# Only meant to be executed from within the stage0 script
fetch() {
return
}
unpack() {
return
}
build() {
return
}
install() {
return
}
. $1
(
fetch
unpack
build
install
)