obosdi-pkg/install/apps/internet/webbrowser
2015-12-07 00:41:56 +01:00

38 lines
941 B
Bash

#!/bin/bash
. ./lib
options=()
options+=("chromium" "" on)
options+=("chromium-pepper-flash" "(AUR)" on)
options+=("chromium-pepper-flash-standalone" "(AUR)" off)
options+=("firefox" "" on)
options+=("flashplugin" "" off)
options+=("freshplayerplugin-git" "(AUR)" on)
options+=("freshplayerplugin" "(AUR)" off)
sel=$(whiptail --backtitle "$apptitle" --title "Web Browser applications :" --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
'"chromium-pepper-flash"' | \
'"chromium-pepper-flash-standalone"' | \
'"freshplayerplugin-git"' | \
'"freshplayerplugin"') 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
'"firefox"') choosepkg "firefox-i18n-";;
esac
done
exit 0