repo.or.cz
/
tmux.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'obsd-master'
[tmux.git]
/
.github
/
travis
/
before-install.sh
blob
a589a74367d91c729f2f70740a6760ffac84eda0
1
#!/bin/sh
2
3
if
[
"
$TRAVIS_OS_NAME
"
=
"linux"
];
then
4
sudo apt-get update
-qq
5
sudo apt-get
-y
install
bison \
6
autotools-dev \
7
libncurses5-dev \
8
libevent-dev \
9
pkg-config \
10
libutempter-dev \
11
build-essential
12
13
if
[
"
$BUILD
"
=
"musl"
-o
"
$BUILD
"
=
"musl-static"
];
then
14
sudo apt-get
-y
install
musl-dev \
15
musl-tools
16
fi
17
fi
18
19
if
[
"
$TRAVIS_OS_NAME
"
=
"freebsd"
];
then
20
sudo pkg
install
-y
\
21
automake \
22
libevent \
23
pkgconf
24
fi