We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18041fd commit 3bffbadCopy full SHA for 3bffbad
src/scripts/linux.sh
@@ -40,7 +40,8 @@ pre_setup() {
40
LC_ALL=C.UTF-8 sudo apt-add-repository ppa:ondrej/php -y && update_ppa
41
fi
42
if [ "$version" = "8.0" ]; then
43
- $apt_install libcurl4-gnutls-dev libtidy-dev libpng-dev libjpeg-dev libicu-dev libzip-dev
+ IFS=' ' read -r -a libs <<< "$(echo "aspell curl4-gnutls enchant freetype6 icu jpeg png tidy webp xpm zip" | sed "s/[^ ]*/lib&-dev/g")"
44
+ $apt_install "${libs[@]}"
45
46
47
}
0 commit comments