blob: 6258d5dda030fe0129a677f0713b677f763cac93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#!/usr/bin/env sh
#
# Installation script for the alpine host
# to prepare the static binary
#
# Copyright: SPDX-License-Identifier: GPL-3.0-or-later
#
# Author: Paul Emm. Katsoulakis <paul@netdata.cloud>
# Add required APK packages
apk add --no-cache -U \
alpine-sdk \
autoconf \
automake \
bash \
binutils \
cmake \
curl \
elfutils-dev \
gcc \
git \
gnutls-dev \
gzip \
libelf-static \
libmnl-dev \
libnetfilter_acct-dev \
libtool \
libuv-dev \
libuv-static \
lz4-dev \
lz4-static \
make \
ncurses \
netcat-openbsd \
openssh \
pkgconfig \
protobuf-dev \
snappy-dev \
snappy-static \
util-linux-dev \
wget \
xz \
zlib-dev \
zlib-static ||
exit 1
|