1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-16 13:48:33 +00:00
morpheus/build

33 lines
479 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 || echo "Failed to fetch $1" >> $top/morpheus.log
unpack || echo "Failed to unpack $1" >> $top/morpheus.log
patch || echo "Failed to patch $1" >> $top/morpheus.log
build || echo "Failed to build $1" >> $top/morpheus.log
install || echo "Failed to install $1" >> $top/morpheus.log
)