2020-05-18 13:16:16 +00:00
|
|
|
#!/usr/bin/env bash
|
2022-11-02 15:49:40 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright (C) 2020 Intel Corporation
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
2020-05-18 13:16:16 +00:00
|
|
|
# Minimal install
|
2022-05-11 22:42:50 +00:00
|
|
|
zypper install -y gcc gcc-c++ make cunit-devel libaio-devel libopenssl-devel \
|
2022-05-20 10:04:01 +00:00
|
|
|
libuuid-devel python-base ncurses-devel libjson-c-devel libcmocka-devel \
|
|
|
|
ninja meson python3-pyelftools
|
2020-05-18 13:16:16 +00:00
|
|
|
# Additional dependencies for DPDK
|
|
|
|
zypper install -y libnuma-devel nasm
|
|
|
|
# Additional dependencies for ISA-L used in compression
|
|
|
|
zypper install -y autoconf automake libtool help2man
|
|
|
|
if [[ $INSTALL_DEV_TOOLS == "true" ]]; then
|
|
|
|
# Tools for developers
|
2022-05-20 10:04:01 +00:00
|
|
|
zypper install -y git-core lcov python3-pycodestyle sg3_utils \
|
2021-02-03 13:40:07 +00:00
|
|
|
pciutils ShellCheck bash-completion
|
2020-05-18 13:16:16 +00:00
|
|
|
fi
|
|
|
|
if [[ $INSTALL_PMEM == "true" ]]; then
|
|
|
|
# Additional dependencies for building pmem based backends
|
|
|
|
zypper install -y libpmemblk-devel
|
2021-08-03 15:47:36 +00:00
|
|
|
zypper install -y libpmemobj-devel
|
2020-05-18 13:16:16 +00:00
|
|
|
fi
|
|
|
|
if [[ $INSTALL_FUSE == "true" ]]; then
|
|
|
|
# Additional dependencies for FUSE and NVMe-CUSE
|
|
|
|
zypper install -y fuse3-devel
|
|
|
|
fi
|
2022-01-16 17:09:19 +00:00
|
|
|
if [[ $INSTALL_RBD == "true" ]]; then
|
|
|
|
# Additional dependencies for RBD bdev in NVMe over Fabrics
|
|
|
|
zypper install -y librados-devel librbd-devel
|
|
|
|
fi
|
2020-05-18 13:16:16 +00:00
|
|
|
if [[ $INSTALL_RDMA == "true" ]]; then
|
|
|
|
# Additional dependencies for RDMA transport in NVMe over Fabrics
|
|
|
|
zypper install -y rdma-core-devel
|
|
|
|
fi
|
|
|
|
if [[ $INSTALL_DOCS == "true" ]]; then
|
|
|
|
# Additional dependencies for building docs
|
|
|
|
zypper install -y doxygen mscgen graphviz
|
|
|
|
fi
|
2022-05-16 03:40:46 +00:00
|
|
|
if [[ $INSTALL_DAOS == "true" ]]; then
|
|
|
|
zypper ar https://packages.daos.io/v2.0/Leap15/packages/x86_64/ daos_packages
|
|
|
|
rpm --import https://packages.daos.io/RPM-GPG-KEY
|
|
|
|
zypper --non-interactive refresh
|
|
|
|
zypper install -y daos-client daos-devel
|
|
|
|
fi
|