summaryrefslogtreecommitdiffstats
path: root/remote/modules/beamergui/module.build
blob: 2605961560b9a68f736874775d27923f0560f34c (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 "$SRCDIR/src/beamergui.pro" -r -spec linux-g++ || perror "'qmake' failed (e.g. not installed)."
	pinfo "Running make"
	make || perror "'make' failed."
}
post_copy() {
	:
}