1#!/bin/sh -eux 2# SPDX-License-Identifier: GPL-2.0-or-later 3# Copyright (c) 2018-2021 Petr Vorel <[email protected]> 4 5yum="yum -y install --skip-broken" 6 7$yum \ 8 asciidoc \ 9 autoconf \ 10 automake \ 11 make \ 12 clang \ 13 gcc \ 14 git \ 15 findutils \ 16 iproute \ 17 numactl-devel \ 18 libtirpc \ 19 libtirpc-devel \ 20 perl-JSON \ 21 perl-libwww-perl \ 22 pkg-config \ 23 redhat-lsb-core 24 25# CentOS 8 fixes 26$yum libmnl-devel || $yum libmnl 27$yum rubygem-asciidoctor || true 28