summaryrefslogtreecommitdiffstats
path: root/core/modules/ntfsfree/module.build
blob: 869b0e623d282c8cc8d6c581d14dfd425a041f77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
fetch_source() {
	autoclone
}

build() {
	local SRCDIR="${MODULE_WORK_DIR}/src/ntfsfree"
	mkdir -p "${MODULE_BUILD_DIR}/opt/openslx/sbin"
	cde "${MODULE_BUILD_DIR}/opt/openslx/sbin"
	pinfo "Running cmake"
	cmake "$SRCDIR" || perror "'cmake $SRCDIR' failed."
	pinfo "Running make"
	make || perror "'make' failed."
}

post_copy() {
	:
}