blob: cb6c3e645214aed4a3f04a3561bbd41bce2f142f (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env bash
ci_dir="$(dirname "$0")"
. "${ci_dir}/ci-common.sh"
git_download flocq
( cd "${CI_BUILD_DIR}/flocq" && ( if [ ! -x ./configure ]; then autoconf && ./configure; fi ) && ./remake "-j${NJOBS}" && ./remake install )
|