19 lines
282 B
Bash
19 lines
282 B
Bash
#!/bin/sh
|
|
|
|
if [ "${config}" = "release64" ] && [ "${CC}" = "clang" ]
|
|
then
|
|
cd /tmp
|
|
git clone https://github.com/doxygen/doxygen.git
|
|
cd doxygen
|
|
./configure
|
|
make
|
|
make distclean
|
|
git pull
|
|
./configure
|
|
make
|
|
sudo make install
|
|
|
|
cd "${TRAVIS_BUILD_DIR}"
|
|
doxygen build/Doxyfile
|
|
fi
|