summaryrefslogtreecommitdiffstats
path: root/core/modules/cron/module.build
blob: d4ecce79589fd233eabc43f551e9da1398401e2a (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
#!/bin/bash
fetch_source() {
	[ -d "${MODULE_WORK_DIR}/src/.git" ] && return 0
	rm -rf -- "${MODULE_WORK_DIR}/src"
	git clone "${REQUIRED_GIT}" "${MODULE_WORK_DIR}/src" || perror "Could not clone git to ${MODULE_WORK_DIR}/src"
	cd "${MODULE_WORK_DIR}/src"
	git checkout "${REQUIRED_COMMIT}" || perror "Could not switch to required commit"
	cd - &>/dev/null
}

build() {
	# compilation
	cde "${MODULE_WORK_DIR}/src"
	./autogen.sh || perror "Autogen failed"
	./configure --disable-dependency-tracking --enable-syscrontab --prefix= --exec-prefix= --bindir=/opt/openslx/bin --sbindir=/opt/openslx/sbin || perror "configure failed"

	make || perror "Could not compile cron using 'make'."

	# NO MAKE INSTALL: Copy to build dir, since there are no shared libs linked in
	mkdir -p "${MODULE_BUILD_DIR}/opt/openslx/sbin"
	cp "${MODULE_WORK_DIR}/src/src/crond" "${MODULE_BUILD_DIR}/opt/openslx/sbin/" || perror "Could not copy crond binary to ${MODULE_BUILD_DIR}"
	cd - &>/dev/null
}

post_copy() {
	:
}