mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-05-07 23:33:52 +00:00
* Adding nicer header with LICENSE to single file version * Adding badges * Clean up sh files * Adding explicit in a few places * More fixes from codacy
26 lines
514 B
Bash
26 lines
514 B
Bash
#!/bin/env sh
|
|
# (Source me)
|
|
|
|
set -evx
|
|
|
|
DOXYGEN_URL="ftp://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.13.src.tar.gz"
|
|
cd "${DEPS_DIR}"
|
|
|
|
if [[ ! -f "${DEPS_DIR}/doxygen/build/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}"
|
|
|
|
set +evx
|
|
|