repo.or.cz
/
got-portable.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
indentation fix
[got-portable.git]
/
.github
/
ci
/
before-install.sh
blob
ad15ff18c6d6142ed28fff95bd1b6b99c43f7591
1
#!/bin/sh
2
3
if
[
"
$CIRRUS_OS
"
=
"linux"
];
then
4
apt-get update
-qq
&&
\
5
apt-get
-y
install
bison autoconf \
6
autotools-dev \
7
libncurses5-dev \
8
pkg-config \
9
build-essential \
10
libssl-dev \
11
libbsd-dev \
12
libevent-dev \
13
uuid-dev \
14
zlib1g-dev \
15
git \
16
athena-jot \
17
ed \
18
libtls-dev
19
fi
20
21
if
[
"
$CIRRUS_OS
"
=
"freebsd"
];
then
22
pkg
install
-y
\
23
automake \
24
pkgconf \
25
git \
26
libevent \
27
libretls
28
fi
29
30
if
[
"
$CIRRUS_OS
"
=
"darwin"
];
then
31
brew
install
autoconf \
32
automake \
33
bison \
34
pkg-config \
35
ncurses \
36
ossp-uuid \
37
git \
38
libevent \
39
libretls
40
fi