summaryrefslogtreecommitdiffstats
path: root/remote/modules/beamergui/module.build
blob: 2ff35bfcd7e72d4f8718f1a88198ba667684fefb (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_DIR}/src/"

	# 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-qt4 "$SRCDIR/src/beamergui.pro" -r -spec linux-g++ || perror "'qmake-qt4' failed (e.g. not installed)."
	pinfo "Running make"
	make || perror "'make' failed."
}
post_copy() {
	:
}