summaryrefslogtreecommitdiffstats
path: root/remote/clean_module_funcs.inc
blob: 91f13942d26335b190c4d04dec8c8d3577c6b409 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Called when the sources for this module need to be fetched.
# Not called if fetched_source.flag exists
fetch_source() {
	:
}

# Called when the module should be built.
# Not called if build_complete.flag exists
build() {
	:
}

# Called after the relevant files from the module's build dir
# have been copied to the target dir.
post_copy() {
	:
}

# Called when this module is about to be handled, before fetching the source.
module_load() {
	:
}