mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-05-06 07:03:52 +00:00
18 lines
458 B
Bash
18 lines
458 B
Bash
DOXYGEN_URL="ftp://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.13.src.tar.gz"
|
|
cd "${DEPS_DIR}"
|
|
|
|
if [[ ! -f "${DEPS_DIR}/doxygen/bin/doxygen" ]] ; then
|
|
echo "Downloading Doxygen"
|
|
mkdir -p doxygen
|
|
travis_retry wget --no-check-certificate --quiet -O - "${DOXYGEN_URL}" | tar --strip-components=1 -xz -C doxygen
|
|
cd doxygen
|
|
mkdir -p build
|
|
cd build
|
|
cmake ..
|
|
make -j2
|
|
fi
|
|
|
|
export PATH="${DEPS_DIR}/doxygen/build/bin:${PATH}"
|
|
|
|
cd "${TRAVIS_BUILD_DIR}"
|