1#!/bin/sh 2# Copyright (c) 2018-2021 Petr Vorel <pvorel@suse.cz> 3set -ex 4 5yum="yum -y install" 6 7$yum \ 8 asciidoc \ 9 autoconf \ 10 automake \ 11 make \ 12 clang \ 13 gcc \ 14 git \ 15 findutils \ 16 numactl-devel \ 17 libtirpc \ 18 libtirpc-devel \ 19 perl-JSON \ 20 perl-libwww-perl \ 21 pkg-config \ 22 redhat-lsb-core 23 24# CentOS 8 fixes 25$yum libmnl-devel || $yum libmnl 26$yum rubygem-asciidoctor || true 27