summaryrefslogtreecommitdiffstats
path: root/core/modules/slxbrowser/module.build
blob: b1d420ad6e4b5738cbe4cde935a4838912300257 (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() {
	autoclone
}

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

	mkdir -p "${MODULE_BUILD_DIR}/${REQUIRED_PREFIX}"
	cde "${MODULE_BUILD_DIR}/${REQUIRED_PREFIX}"

	pinfo "Running cmake"

	cmake "$SRCDIR" || perror "'cmake $SRCDIR' failed."
	make || perror "'make' failed."
}

post_copy() {
	:
}