mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 17:56:16 +00:00
build - Install doxygen manually (for correct version)
This commit is contained in:
parent
c23df90ba5
commit
a21ce80deb
3 changed files with 8 additions and 9 deletions
|
@ -43,6 +43,7 @@ set -e
|
|||
git clone https://github.com/dashpay/dash.git
|
||||
cd dash
|
||||
|
||||
# Copy Doxygen config / build files
|
||||
cp $TRAVIS_BUILD_DIR/doxygen/* doc/
|
||||
|
||||
################################################################################
|
||||
|
@ -54,8 +55,6 @@ doxygen $DOXYFILE 2>&1 | tee doxygen.log
|
|||
echo 'Done generating Doxygen code documentation...'
|
||||
#cat doxygen.log
|
||||
|
||||
ls doc/
|
||||
|
||||
# Copy Doxygen files to dash-docs folder
|
||||
echo 'Copy Doxygen files to _site...'
|
||||
cp -R doc/doxygen $TRAVIS_BUILD_DIR/_site/en/
|
||||
|
|
5
scripts/install-doxygen.sh
Normal file
5
scripts/install-doxygen.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/sh
|
||||
set -ex
|
||||
wget http://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.14.linux.bin.tar.gz
|
||||
tar -xzvf doxygen-1.8.14.linux.bin.tar.gz
|
||||
cd doxygen-1.8.14 && ./configure && make install
|
Loading…
Add table
Add a link
Reference in a new issue