ab7ae487a6
Signed-off-by: Michal Berger <michalx.berger@intel.com> Change-Id: I7fe3baa15327b9ff509185ff6aa30390e35e9f8c Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/6239 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Monica Kenguva <monica.kenguva@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com> Reviewed-by: Karol Latecki <karol.latecki@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Community-CI: Mellanox Build Bot
24 lines
734 B
Bash
Executable File
24 lines
734 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Minimal install
|
|
pkg install -y gmake cunit openssl git bash misc/e2fsprogs-libuuid python \
|
|
ncurses ninja meson py37-pyelftools-0.26
|
|
# Additional dependencies for ISA-L used in compression
|
|
pkg install -y autoconf automake libtool help2man
|
|
if [[ $INSTALL_DEV_TOOLS == "true" ]]; then
|
|
# Tools for developers
|
|
pkg install -y devel/astyle bash py37-pycodestyle \
|
|
misc/e2fsprogs-libuuid sysutils/sg3_utils nasm \
|
|
bash-completion
|
|
fi
|
|
if [[ $INSTALL_DOCS == "true" ]]; then
|
|
# Additional dependencies for building docs
|
|
pkg install -y doxygen mscgen graphviz
|
|
fi
|
|
|
|
if [[ $INSTALL_LIBURING == "true" ]]; then
|
|
printf 'liburing is not supported on %s, disabling\n' \
|
|
"$(freebsd-version)"
|
|
INSTALL_LIBURING=false
|
|
fi
|