You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
373 B
23 lines
373 B
#!/bin/sh
|
|
# Copyright (c) 2018 Petr Vorel <pvorel@suse.cz>
|
|
set -e
|
|
|
|
zypper --non-interactive install --no-recommends \
|
|
autoconf \
|
|
automake \
|
|
clang \
|
|
gcc \
|
|
gzip \
|
|
make \
|
|
kernel-default-devel \
|
|
keyutils-devel \
|
|
libacl-devel \
|
|
libaio-devel \
|
|
libcap-devel \
|
|
libnuma-devel \
|
|
libopenssl-devel \
|
|
libselinux-devel \
|
|
libtirpc-devel \
|
|
linux-glibc-devel \
|
|
lsb-release
|