calamares/ci/deps-opensuse.sh

51 lines
1.2 KiB
Bash
Raw Normal View History

2023-09-28 22:04:07 +02:00
#! /bin/sh
#
# Install dependencies for the nightly-opensuse build
#
zypper --non-interactive up
zypper --non-interactive in git-core jq curl ninja
2023-09-28 22:04:07 +02:00
# From deploycala.py
zypper --non-interactive in \
2023-09-28 22:22:43 +02:00
"bison" \
"flex" \
"git" \
"make" \
"cmake" \
"gcc-c++"
2023-09-28 22:04:07 +02:00
zypper --non-interactive in \
2023-09-28 22:22:43 +02:00
"libqt5-qtbase-devel" \
"libqt5-qtdeclarative-devel" \
"cmake(Qt5LinguistTools)" \
"cmake(Qt5Svg)" \
"cmake(Qt5WebEngine)" \
"cmake(PolkitQt5-1)" \
2023-09-28 22:22:43 +02:00
"yaml-cpp-devel" \
"libpwquality-devel" \
"parted-devel" \
"python311-devel" \
2023-09-28 22:22:43 +02:00
"libboost_headers-devel" \
"libboost_python3-devel"
2023-09-28 22:04:07 +02:00
zypper --non-interactive in \
2023-09-28 22:22:43 +02:00
"extra-cmake-modules" \
"cmake(KF5Crash)" \
"cmake(KF5DBusAddons)" \
"cmake(KF5Package)" \
"cmake(KF5Parts)" \
"cmake(KF5Plasma)" \
"cmake(KF5Service)" \
"cmake(KPMcore)" \
"cmake(LibKWorkspace)"
2023-09-28 22:04:07 +02:00
# Additional dependencies
zypper --non-interactive in \
2023-09-28 22:22:43 +02:00
libicu-devel \
libAppStreamQt-devel \
libatasmart-devel
# Not actual dependencies, but good to have
zypper --non-interactive in python311-PyYAML python311-jsonschema
# vi to edit things inside the docker
zypper --non-interactive in vim
# noto so that running Calamares in the docker is readable
zypper --non-interactive in noto-sans-fonts
true