obosdi-pkg/install/apps/office/office-language-aids
2022-11-10 22:27:23 +01:00

42 lines
1 KiB
Bash

#!/bin/bash
. ./lib
options=()
options+=("hunspell" "Spell checking" off)
options+=("hyphen" "Hyphenation rules" off)
options+=("mythes" "Thesaurus" off)
options+=("languagetool" "Grammar checking" off)
options+=("libreoffice-extension-languagetool" "(AUR)" off)
options+=("libreoffice-extension-grammalecte-fr" "(AUR)" off)
sel=$(dialog --backtitle "$apptitle" --title "Office Language aids :" --cancel-button "Back" --checklist "Choose what you want" 0 0 0 \
"${options[@]}" \
3>&1 1>&2 2>&3)
if [ ! "$?" = "0" ]; then
exit 1
fi
for itm in $sel; do
case $itm in
"hunspell" | \
"hyphen" | \
"hunspell" | \
"mythes") ;;
"libreoffice-extension-languagetool" | \
"libreoffice-extension-grammalecte-fr") aurpkg="$aurpkg $(echo $itm | sed 's/"//g')";;
*) pkg="$pkg $(echo $itm | sed 's/"//g')";;
esac
done
instpkg "$pkg" "$aurpkg"
for itm in $sel; do
case $itm in
"hunspell") choosepkg "hunspell-";;
"hyphen") choosepkg "hyphen-";;
"mythes") choosepkg "mythes-";;
esac
done
exit 0