File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change 4
4
5
5
set -e
6
6
7
- DOXYGEN_VER=doxygen-1.8.15
8
- DOXYGEN_TAR=${DOXYGEN_VER} .linux.bin.tar.gz
9
- DOXYGEN_URL=" http://doxygen.nl/files/${DOXYGEN_TAR} "
7
+ DOXYGEN_VER=1_8_16
8
+ DOXYGEN_URL=" https://codeload.github.com/doxygen/doxygen/tar.gz/Release_${DOXYGEN_VER} "
10
9
11
10
: ${GITHUB_REPO:= " Tencent/rapidjson" }
12
11
GITHUB_HOST=" github.com"
@@ -50,6 +49,18 @@ doxygen_install()
50
49
wget -O - " ${DOXYGEN_URL} " | \
51
50
tar xz -C ${TMPDIR-/ tmp} ${DOXYGEN_VER} /bin/doxygen
52
51
export PATH=" ${TMPDIR-/ tmp} /${DOXYGEN_VER} /bin:$PATH "
52
+
53
+ cd ${TMPDIR-/ tmp}
54
+ curl ${DOXYGEN_URL} -o doxygen.tar.gz
55
+ tar zxvf doxygen.tar.gz
56
+ mkdir doxygen_build
57
+ cd doxygen_build
58
+ cmake ../doxygen-Release_${DOXYGEN_VER} /
59
+ make
60
+
61
+ export PATH=" ${TMPDIR-/ tmp} /doxygen_build/bin:$PATH "
62
+
63
+ cd ../../
53
64
}
54
65
55
66
doxygen_run ()
You can’t perform that action at this time.
0 commit comments