File: install-doxygen.sh

package info (click to toggle)
pgrouting 2.3.2%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 20,624 kB
  • ctags: 3,244
  • sloc: cpp: 86,010; sql: 30,138; ansic: 9,711; python: 3,105; perl: 1,307; sh: 957; xml: 182; makefile: 126
file content (28 lines) | stat: -rwxr-xr-x 708 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
# ------------------------------------------------------------------------------
# Travis CI scripts 
# Copyright(c) pgRouting Contributors
#
# Install Doxygen
# ------------------------------------------------------------------------------

set -e

OS="$(lsb_release -c -s)"

if [[ "$OS" != "trusty" ]] ; then
    exit 0
fi


#install doxygen only on trusty

sudo \
    sudo apt-get --no-install-suggests --no-install-recommends -qq install doxygen  && \
    doxygen --version ;

#sudo add-apt-repository ppa:libreoffice/libreoffice-4-4 -y && \
#    sudo apt-get -qq update && \
#    sudo apt-get --no-install-suggests --no-install-recommends -qq install doxygen  && \
#    doxygen --version ;