2020-05-18 13:16:16 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Minimal install
|
2020-11-24 04:01:51 +00:00
|
|
|
zypper install -y gcc gcc-c++ make cmake cunit-devel libaio-devel libopenssl-devel \
|
2021-01-26 14:45:32 +00:00
|
|
|
libuuid-devel python-base ncurses-devel json-c-devel libcmocka-devel ninja meson \
|
|
|
|
python-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
|
|
|
|
zypper install -y git-core lcov python-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
|
|
|
|
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
|