blob: 644b5524ad6564eb6ba296573924978bca4f7744 (
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 bash
# SPDX-License-Identifier: GPL-3.0-or-later
# shellcheck source=packaging/makeself/functions.sh
. "$(dirname "${0}")/../functions.sh" "${@}" || exit 1
version="5.1"
# shellcheck disable=SC2015
[ "${GITHUB_ACTIONS}" = "true" ] && echo "::group::Building fping" || true
fetch "fping-${version}" "https://fping.org/dist/fping-${version}.tar.gz" \
1ee5268c063d76646af2b4426052e7d81a42b657e6a77d8e7d3d2e60fd7409fe fping
export CFLAGS="-static -I/openssl-static/include -pipe"
export LDFLAGS="-static -L/openssl-static/lib"
export PKG_CONFIG_PATH="/openssl-static/lib/pkgconfig"
if [ "${CACHE_HIT:-0}" -eq 0 ]; then
run ./configure \
--prefix="${NETDATA_INSTALL_PATH}" \
--enable-ipv4 \
--enable-ipv6 \
--disable-dependency-tracking
cat > doc/Makefile <<-EOF
all:
clean:
install:
EOF
run make clean
run make -j "$(nproc)"
fi
run make install
store_cache fping "${NETDATA_MAKESELF_PATH}/tmp/fping-${version}"
if [ "${NETDATA_BUILD_WITH_DEBUG}" -eq 0 ]; then
run strip "${NETDATA_INSTALL_PATH}"/bin/fping
fi
# shellcheck disable=SC2015
[ "${GITHUB_ACTIONS}" = "true" ] && echo "::endgroup::" || true
|