blob: 36705b788cf25d407ed05b5a4ea18332b3418a2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#/bin/sh -f
# things to do for travis-ci in the before_install section
if ( test "`uname -s`" = "Darwin" )
then
brew install icu4c
brew install db
brew install gobject-introspection
brew install gtk-doc
else
sudo apt-get update -qq
sudo apt-get install libicu-dev
sudo apt-get install libdb4.8-dev
sudo apt-get install gobject-introspection libgirepository1.0-dev
sudo apt-get install gtk-doc-tools
fi
|