1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-24 13:28:34 +00:00
morpheus/build
2013-09-17 15:40:13 +01:00

33 lines
328 B
Bash
Executable File

#!/bin/sh
#
# Only meant to be executed from within the stage0 script
fetch() {
return
}
unpack() {
return
}
patch() {
return
}
build() {
return
}
install() {
return
}
. $1
(
fetch
unpack
patch
build || echo "Failed to build $1" >> $top/morpheus.log
install || echo "Failed to install $1" >> $top/morpheus.log
)