blob: 0d857c1a6bb324e7bd8d3e0dfa6771766fa9a1af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/sh
# Install build requirements.
dnf install --setopt=install_weak_deps=False -y \
ncurses-devel \
openssl-devel \
qt5-qtbase-devel
# Install development tools.
dnf install --setopt=install_weak_deps=False -y \
clang-tools-extra \
gcc-c++ \
git-core \
make
# Install documentation tools.
dnf install --setopt=install_weak_deps=False -y \
python3-sphinx \
texinfo \
qt5-qttools-devel
# Tools needed for the test suite.
dnf install --setopt=install_weak_deps=False -y \
findutils \
file
dnf clean all
|