diff options
Diffstat (limited to 'core/modules/cowgui/module.build')
-rw-r--r-- | core/modules/cowgui/module.build | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/core/modules/cowgui/module.build b/core/modules/cowgui/module.build new file mode 100644 index 00000000..05730c02 --- /dev/null +++ b/core/modules/cowgui/module.build @@ -0,0 +1,22 @@ +#!/bin/bash + +fetch_source() { + autoclone +} + +build() { + local SRCDIR="${MODULE_WORK_DIR}/src/cowgui" + + mkdir -p "${MODULE_BUILD_DIR}/${REQUIRED_PREFIX}" + cde "${MODULE_BUILD_DIR}/${REQUIRED_PREFIX}" + + pinfo "Running cmake" + + cmake "$SRCDIR" || perror "'cmake $SRCDIR' failed." + make || perror "'make' failed." +} + +post_copy() { + : +} + |