summaryrefslogtreecommitdiffstats
path: root/core/modules/ntfsfree/module.build
diff options
context:
space:
mode:
Diffstat (limited to 'core/modules/ntfsfree/module.build')
-rw-r--r--core/modules/ntfsfree/module.build19
1 files changed, 19 insertions, 0 deletions
diff --git a/core/modules/ntfsfree/module.build b/core/modules/ntfsfree/module.build
new file mode 100644
index 00000000..869b0e62
--- /dev/null
+++ b/core/modules/ntfsfree/module.build
@@ -0,0 +1,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() {
+ :
+}
+