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

fetch_source() {
	autoclone
}

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

	mkdir -p "$MODULE_BUILD_DIR/opt/openslx/bin"
	cde "${MODULE_BUILD_DIR}/opt/openslx/bin"
	pinfo "Running cmake"
	cmake "$SRCDIR" || perror "'cmake $SRCDIR' failed."
	pinfo "Running make"
	make || perror "'make' failed."
}
post_copy() {
	:
}