blob: a3a704091b591fcbc4d70c42d0800f2c6fee5fab (
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" && autoconf && ./configure && ./remake "-j${NJOBS}" && ./remake install )
|