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

28 lines
198 B
Plaintext
Raw Normal View History

2013-09-06 07:40:52 +00:00
#!/bin/sh
2013-09-06 08:50:29 +00:00
#
# Only meant to be executed from within the stage0 script
fetch() {
return
}
unpack() {
return
}
build() {
return
}
install() {
return
}
2013-09-05 10:59:49 +00:00
2013-09-06 08:31:51 +00:00
. $1
(
fetch
unpack
build
install
)