summaryrefslogblamecommitdiffstats
path: root/core/modules/cron/module.build
blob: 6a467d4e37195b8f5ef08321f8b8a7bb261b6e56 (plain) (tree)
1
2
3
4
5
6
7
8
           


                                                        
                                                                                                                      

                                                                                         
                        


         









                                                                                                                                                                                 






                        
#!/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
	cd "${MODULE_WORK_DIR}/src" || perror "Could not cd to '${MODULE_WORK_DIR}/src'. Did fetch_source work?"
	./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() {
	:
}