0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-03-16 22:13:38 +00:00
netdata_netdata/packaging/makeself/install-alpine-packages.sh
Costa Tsaousis 5928070239
Updated copyright notices (#19256)
* updated copyright notices everywhere (I hope)

* Update makeself.lsm

* Update coverity-scan.sh

* make all newlines be linux, not windows

* remove copyright from all files (the take it from the repo), unless it is printed to users
2024-12-20 15:25:45 +02:00

46 lines
710 B
Bash
Executable file

#!/usr/bin/env sh
# Copyright: SPDX-License-Identifier: GPL-3.0-or-later
#
# Installation script for the alpine host
# to prepare the static binary
apk update || exit 1
apk upgrade || exit 1
# Add required APK packages
apk add --no-cache -U \
alpine-sdk \
autoconf \
automake \
bash \
binutils \
cmake \
curl \
elfutils-dev \
gcc \
git \
gnutls-dev \
gzip \
jq \
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