summaryrefslogtreecommitdiffstats
path: root/core/modules/beamergui/module.build
blob: e47758ccb7ea458e134df65d1778bb79badc16a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

fetch_source() {
	git clone "${REQUIRED_GIT}" src
}

build() {
	local SRCDIR="${MODULE_WORK_DIR}/src/"

	mkdir -p "$MODULE_BUILD_DIR/opt/openslx/bin"
	cd "${MODULE_BUILD_DIR}/opt/openslx/bin" || perror "Could not cd!"
	pinfo "Running cmake"
	cmake "$SRCDIR" || perror "'$QMAKE' failed (e.g. not installed)."
	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() {
	:
}