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 uuid-dev \
14 zlib1g-dev \
15 git \
16 athena-jot \
17 ed
18 fi
20 if [ "$CIRRUS_OS" = "freebsd" ]; then
21 pkg install -y \
22 automake \
23 pkgconf \
24 git \
25 coreutils
26 fi
28 if [ "$CIRRUS_OS" = "darwin" ]; then
29 brew install autoconf \
30 automake \
31 pkg-config \
32 ncurses \
33 ossp-uuid \
34 git
35 fi