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
portable: CI/README: update for coreutils
[got-portable.git]
/
.github
/
ci
/
before-install.sh
blob
c612b7e2cdf7dea489c8e26de1b168b5d2958a1a
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
libmd-dev \
11
libssl-dev \
12
libbsd-dev \
13
libevent-dev \
14
uuid-dev \
15
zlib1g-dev \
16
git \
17
athena-jot \
18
ed
19
fi
20
21
if
[
"
$CIRRUS_OS
"
=
"freebsd"
];
then
22
pkg
install
-y
\
23
automake \
24
pkgconf \
25
git \
26
libevent
27
fi
28
29
if
[
"
$CIRRUS_OS
"
=
"darwin"
];
then
30
brew
install
autoconf \
31
automake \
32
bison \
33
pkg-config \
34
ncurses \
35
ossp-uuid \
36
git \
37
libevent
38
fi