|
@@ -17,7 +17,7 @@ install_build-deps() {
|
|
status "Install OBS build dependencies"
|
|
status "Install OBS build dependencies"
|
|
trap "caught_error 'install_build-deps'" ERR
|
|
trap "caught_error 'install_build-deps'" ERR
|
|
|
|
|
|
- sudo apt-get install -y $@
|
|
|
|
|
|
+ sudo apt-get install --no-install-recommends -y $@
|
|
}
|
|
}
|
|
|
|
|
|
install_obs-deps() {
|
|
install_obs-deps() {
|
|
@@ -26,9 +26,9 @@ install_obs-deps() {
|
|
trap "caught_error 'install_obs-deps'" ERR
|
|
trap "caught_error 'install_obs-deps'" ERR
|
|
|
|
|
|
if [ -z "${DISABLE_PIPEWIRE}" ]; then
|
|
if [ -z "${DISABLE_PIPEWIRE}" ]; then
|
|
- sudo apt-get install -y $@ libpipewire-0.3-dev
|
|
|
|
|
|
+ sudo apt-get install --no-install-recommends -y $@ libpipewire-0.3-dev
|
|
else
|
|
else
|
|
- sudo apt-get install -y $@
|
|
|
|
|
|
+ sudo apt-get install --no-install-recommends -y $@
|
|
fi
|
|
fi
|
|
}
|
|
}
|
|
|
|
|
|
@@ -37,7 +37,7 @@ install_qt5-deps() {
|
|
status "Install Qt5 dependencies"
|
|
status "Install Qt5 dependencies"
|
|
trap "caught_error 'install_qt5-deps'" ERR
|
|
trap "caught_error 'install_qt5-deps'" ERR
|
|
|
|
|
|
- sudo apt-get install -y $@
|
|
|
|
|
|
+ sudo apt-get install --no-install-recommends -y $@
|
|
}
|
|
}
|
|
|
|
|
|
install_qt6-deps() {
|
|
install_qt6-deps() {
|
|
@@ -47,7 +47,7 @@ install_qt6-deps() {
|
|
|
|
|
|
_QT6_AVAILABLE="$(sudo apt-cache madison ${1})"
|
|
_QT6_AVAILABLE="$(sudo apt-cache madison ${1})"
|
|
if [ "${_QT6_AVAILABLE}" ]; then
|
|
if [ "${_QT6_AVAILABLE}" ]; then
|
|
- sudo apt-get install -y $@
|
|
|
|
|
|
+ sudo apt-get install --no-install-recommends -y $@
|
|
fi
|
|
fi
|
|
}
|
|
}
|
|
|
|
|
|
@@ -77,7 +77,7 @@ install_plugin-deps() {
|
|
status "Install plugin dependencies"
|
|
status "Install plugin dependencies"
|
|
trap "caught_error 'install_plugin-deps'" ERR
|
|
trap "caught_error 'install_plugin-deps'" ERR
|
|
|
|
|
|
- sudo apt-get install -y $@
|
|
|
|
|
|
+ sudo apt-get install --no-install-recommends -y $@
|
|
}
|
|
}
|
|
|
|
|
|
install_dependencies() {
|
|
install_dependencies() {
|