calamares/ci/deps-kaos.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
542 B
Bash
Raw Normal View History

#! /bin/sh
#
# Install dependencies for building on KaOS
#
# There is no docker image for KaOS, and the live ISO comes
# with many useful things already installed, so the list
# here is short. Use pacman -Syu once to update the whole
# system to get latest libraries.
#
pacman -Syu --noconfirm git cmake ninja # No jq available
2023-10-24 02:15:34 +02:00
pacman -S --noconfirm \
"gcc" \
"boost" \
"qt5-tools" \
"yaml-cpp" \
"kpmcore" \
"icu"
2023-10-24 02:15:34 +02:00
pacman -S --noconfirm \
"extra-cmake-modules" \
"kiconthemes" \
"kservice" \
"kio" \
"kparts" \
"qtwebengine"
true