summaryrefslogtreecommitdiffstats
path: root/core/modules/beamergui/module.build
blob: 4785b31625bebf08828cfdd06b425aea4fea1b55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash

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

build() {
	local SRCDIR="${MODULE_WORK_DIR}/src/"
	if [[ "$SYS_DISTRIBUTION" == "opensuse" && "$SYS_VERSION" == "13.2" ]]; then
		QMAKE="/usr/$LIB64/qt4/bin/qmake"
	else
		QMAKE="$(which qmake-qt4)"
	fi

	# first activate qt 4
	activate_qt 4

	mkdir -p "$MODULE_BUILD_DIR/opt/openslx/bin"
	cd "${MODULE_BUILD_DIR}/opt/openslx/bin" || perror "Could not cd!"
	pinfo "Running qmake"
	"$QMAKE" "$SRCDIR/src/beamergui.pro" -r -spec linux-g++ || perror "'qmake-qt4' failed (e.g. not installed)."
	pinfo "Running make"
	make || perror "'make' failed."

	# Make read-edid
	gcc -o "${MODULE_BUILD_DIR}/opt/openslx/bin/read-edid" "${MODULE_DIR}/source/parse-edid/parse-edid.c" || perror "Compiling parse-edid failed."
}
post_copy() {
	:
}