Add spell check, thesorus, ... to office apps

This commit is contained in:
MatMoul 2016-04-09 01:26:49 +02:00
parent 06be13f1f6
commit c6643e7ac9
2 changed files with 45 additions and 2 deletions

View file

@ -3,7 +3,7 @@
options=()
options+=("Office Suites" "")
options+=("Office Spell Check and Thesaurus" "")
options+=("Office Language Aids" "")
options+=("Office Tools" "")
@ -18,7 +18,7 @@ sed -i "/^defaultitem=/c\defaultitem=\"$sel\"" $0
case $sel in
"Office Suites") script install/apps/office/office;;
"Office Spell Check and Thesaurus") script install/apps/office/office-spell-thesaurus;;
"Office Language Aids") script install/apps/office/office-language-aids;;
"Office Tools") script install/apps/office/office-tools;;
esac

View file

@ -0,0 +1,43 @@
#!/bin/bash
. ./lib
options=()
options+=("hunspell" "Spell checking" off)
options+=("hyphen" "Hyphenation rules" off)
options+=("libmythes" "Required for mythes" off)
options+=("mythes" "Thesaurus" off)
options+=("languagetool" "Grammar checking" off)
options+=("libreoffice-extension-languagetool" "(AUR)" off)
options+=("libreoffice-extension-grammalecte-fr" "(AUR)" off)
sel=$(whiptail --backtitle "$apptitle" --title "Office Language aids :" --checklist "Choose what you want" --cancel-button "Back" 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