summaryrefslogtreecommitdiffstats
path: root/core/modules/beamergui/module.build
diff options
context:
space:
mode:
authorSimon Rettberg2018-11-16 14:26:36 +0100
committerSimon Rettberg2018-11-16 14:26:36 +0100
commitdba8b4b66995deaee4f76d965e90b34d282ccf91 (patch)
tree59762a67b426e72f93c100ebe5e92199bc8004f3 /core/modules/beamergui/module.build
parent[dnbd3] Bump version (diff)
downloadmltk-dba8b4b66995deaee4f76d965e90b34d282ccf91.tar.gz
mltk-dba8b4b66995deaee4f76d965e90b34d282ccf91.tar.xz
mltk-dba8b4b66995deaee4f76d965e90b34d282ccf91.zip
[beamergui] Update to 2.0, move parse-edid to own module
Diffstat (limited to 'core/modules/beamergui/module.build')
-rw-r--r--core/modules/beamergui/module.build7
1 files changed, 2 insertions, 5 deletions
diff --git a/core/modules/beamergui/module.build b/core/modules/beamergui/module.build
index a4735e85..316b9757 100644
--- a/core/modules/beamergui/module.build
+++ b/core/modules/beamergui/module.build
@@ -1,11 +1,11 @@
#!/bin/bash
fetch_source() {
- git clone "${REQUIRED_GIT}" src
+ autoclone
}
build() {
- local SRCDIR="${MODULE_WORK_DIR}/src/"
+ local SRCDIR="${MODULE_WORK_DIR}/src/beamergui"
mkdir -p "$MODULE_BUILD_DIR/opt/openslx/bin"
cd "${MODULE_BUILD_DIR}/opt/openslx/bin" || perror "Could not cd!"
@@ -13,9 +13,6 @@ build() {
cmake "$SRCDIR" || perror "'cmake $SRCDIR' failed."
pinfo "Running make"
make || perror "'make' failed."
-
- # Make read-edid
- gcc -o "${MODULE_BUILD_DIR}/opt/openslx/bin/parse-edid" "${MODULE_DIR}/source/parse-edid/parse-edid.c" || perror "Compiling parse-edid failed."
}
post_copy() {
: