2023-10-24 00:00:21 +02:00
|
|
|
#! /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
|
2023-10-24 11:32:14 +02:00
|
|
|
# here is short. Use pacman -Syu once to update the whole
|
|
|
|
# system to get latest libraries.
|
2023-10-24 00:00:21 +02:00
|
|
|
#
|
2023-10-24 11:32:14 +02:00
|
|
|
pacman -Syu --noconfirm git cmake ninja # No jq available
|
2023-10-24 02:15:34 +02:00
|
|
|
pacman -S --noconfirm \
|
2023-10-24 00:00:21 +02:00
|
|
|
"gcc" \
|
|
|
|
"boost" \
|
2024-01-23 11:25:11 +01:00
|
|
|
"qt6-tools" \
|
2023-10-24 00:00:21 +02:00
|
|
|
"yaml-cpp" \
|
|
|
|
"kpmcore" \
|
|
|
|
"icu"
|
2023-10-24 02:15:34 +02:00
|
|
|
pacman -S --noconfirm \
|
2023-10-24 00:00:21 +02:00
|
|
|
"extra-cmake-modules" \
|
2024-01-23 11:25:11 +01:00
|
|
|
"kiconthemes6" \
|
|
|
|
"kservice6" \
|
|
|
|
"kio6" \
|
|
|
|
"kparts6" \
|
|
|
|
"qt6-webengine"
|
2023-10-31 16:29:54 +01:00
|
|
|
true
|