Blob


1 #!/bin/sh
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 libtls-dev \
19 ed
20 fi
22 if [ "$CIRRUS_OS" = "freebsd" ]; then
23 pkg install -y \
24 automake \
25 pkgconf \
26 git \
27 libevent \
28 coreutils
29 fi
31 if [ "$CIRRUS_OS" = "darwin" ]; then
32 brew install autoconf \
33 automake \
34 pkg-config \
35 ncurses \
36 ossp-uuid \
37 git \
38 libevent \
39 libressl
40 fi