2015-03-21 20:04:17 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Script to install Thunderbird on GNU/Linux
|
2015-10-06 19:50:14 +02:00
|
|
|
# Created by clamsawd (clamsawd@openmailbox.org)
|
2015-10-26 16:39:27 +01:00
|
|
|
# Version 2.2
|
2015-03-21 20:04:17 +01:00
|
|
|
# Licensed by GPL v.2
|
2015-10-26 16:39:27 +01:00
|
|
|
# Last update: 26-10-2015
|
2015-03-21 20:04:17 +01:00
|
|
|
# --------------------------------------
|
|
|
|
|
|
|
|
# Check if 'user' is 'root'
|
|
|
|
user=$(whoami)
|
|
|
|
if [ "$user" == "root" ] ; then
|
|
|
|
echo "OK" > /dev/null
|
|
|
|
else
|
|
|
|
echo "You must be root!"
|
|
|
|
exit 0
|
|
|
|
fi
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
# Detect "kernel" name
|
|
|
|
KERNEL=$(uname -s)
|
|
|
|
if [ $KERNEL == "Linux" ]; then
|
|
|
|
KERNEL=linux
|
|
|
|
else
|
|
|
|
echo "Unsupported OS ($KERNEL)"
|
|
|
|
exit 0
|
|
|
|
fi
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-10-06 19:50:14 +02:00
|
|
|
# Create Mozilla thunderbird shortcut after of install it.
|
2015-03-21 20:04:17 +01:00
|
|
|
function create_thunderbird_icon(){
|
2015-10-14 18:15:33 +02:00
|
|
|
|
|
|
|
echo "[Desktop Entry]" > /usr/share/applications/thunderbird.desktop
|
|
|
|
#echo "Encoding=UTF-8" >> /usr/share/applications/thunderbird.desktop
|
|
|
|
echo "Name=Mozilla Thunderbird" >> /usr/share/applications/thunderbird.desktop
|
|
|
|
echo "Comment=Mozilla Email Reader" >> /usr/share/applications/thunderbird.desktop
|
|
|
|
echo "GenericName=Email Reader" >> /usr/share/applications/thunderbird.desktop
|
|
|
|
echo "X-GNOME-FullName=Mozilla Thunderbird" >> /usr/share/applications/thunderbird.desktop
|
|
|
|
echo "Exec=thunderbird %u" >> /usr/share/applications/thunderbird.desktop
|
|
|
|
echo "Terminal=false" >> /usr/share/applications/thunderbird.desktop
|
|
|
|
echo "X-MultipleArgs=false" >> /usr/share/applications/thunderbird.desktop
|
|
|
|
echo "Type=Application" >> /usr/share/applications/thunderbird.desktop
|
|
|
|
echo "Icon=/opt/thunderbird/chrome/icons/default/default48.png" >> /usr/share/applications/thunderbird.desktop
|
|
|
|
echo "Categories=Network;WebBrowser;" >> /usr/share/applications/thunderbird.desktop
|
|
|
|
#echo "StartupWMClass=thunderbird-bin" >> /usr/share/applications/thunderbird.desktop
|
|
|
|
echo "StartupNotify=true" >> /usr/share/applications/thunderbird.desktop
|
2015-10-06 19:50:14 +02:00
|
|
|
chmod 755 /usr/share/applications/thunderbird.desktop
|
2015-10-14 18:15:33 +02:00
|
|
|
echo " <-Finished->"
|
|
|
|
exit
|
2015-03-21 20:04:17 +01:00
|
|
|
}
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
# Install thunderbird using 'tar' command and
|
2015-10-06 19:50:14 +02:00
|
|
|
# initialize the 'create_THUNDERBIRD_icon' function.
|
|
|
|
function install_thunderbird(){
|
2015-03-21 20:04:17 +01:00
|
|
|
|
2015-10-14 18:15:33 +02:00
|
|
|
echo ""
|
|
|
|
echo " <-Downloading Mozilla Thunderbird->"
|
2015-03-21 20:04:17 +01:00
|
|
|
cd /tmp/
|
2015-10-06 19:50:14 +02:00
|
|
|
if [ "$APP_DOWNLOAD" == "curl" ] ; then
|
|
|
|
$APP_DOWNLOAD $SERVER > thunderbird-$VERSION
|
|
|
|
else
|
|
|
|
$APP_DOWNLOAD $SERVER
|
|
|
|
fi
|
2015-10-14 18:15:33 +02:00
|
|
|
echo " <-Installing Mozilla Thunderbird->"
|
2015-10-06 19:50:14 +02:00
|
|
|
tar jxvf thunderbird-$VERSION -C /opt/
|
2015-03-21 20:04:17 +01:00
|
|
|
rm -rf /usr/bin/thunderbird
|
|
|
|
ln -s /opt/thunderbird/thunderbird /usr/bin/thunderbird
|
|
|
|
chmod 755 -R /opt/thunderbird/
|
2015-10-06 19:50:14 +02:00
|
|
|
rm -rf /tmp/thunderbird-$VERSION
|
2015-03-21 20:04:17 +01:00
|
|
|
create_thunderbird_icon
|
|
|
|
}
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
# Define the complete URL of selected thunderbird package, show
|
|
|
|
# the selected previous options to confirm and will initialize
|
2015-10-06 19:50:14 +02:00
|
|
|
# the install ('install_thunderbird' function).
|
2015-03-21 20:04:17 +01:00
|
|
|
function step5_install_thunderbird(){
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-10-06 19:50:14 +02:00
|
|
|
SERVER=http://archive.mozilla.org/pub/thunderbird/releases/$RELEASE/$ARCH/$LANGUAGE/thunderbird-$VERSION
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
clear
|
2015-10-14 18:15:33 +02:00
|
|
|
echo ""
|
|
|
|
echo "[Step 5/5] Check your selected installation:"
|
|
|
|
echo ""
|
|
|
|
echo "Install: Mozilla Thunderbird"
|
|
|
|
echo "Package: thunderbird-$VERSION"
|
|
|
|
echo "Language: $LANGUAGE"
|
|
|
|
echo "Arch: $ARCH"
|
|
|
|
echo "Directory: /opt/thunderbird/"
|
|
|
|
echo ""
|
|
|
|
echo "Apps: $NAME_APP (download) , tar (unpack) "
|
|
|
|
echo ""
|
|
|
|
echo -n "(default: y) Is correct (y/n/q); " ; read VAREND
|
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
if [ "${VAREND:-NO_VALUE}" == "NO_VALUE" -o "$VAREND" == "yes" -o "$VAREND" == "y" ] ; then
|
2015-10-06 19:50:14 +02:00
|
|
|
install_thunderbird
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "$VAREND" == "no" -o "$VAREND" == "n" ] ; then
|
|
|
|
get_list_versions
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "$VAREND" == "q" -o "$VAREND" == "quit" ] ; then
|
|
|
|
exit
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
else
|
2015-10-14 18:15:33 +02:00
|
|
|
clear
|
|
|
|
echo ""
|
|
|
|
echo "Invalid option, please, choose any available option"
|
|
|
|
echo ""
|
|
|
|
echo -n "Press 'ENTER' to return "
|
2015-03-21 20:04:17 +01:00
|
|
|
read yesorno
|
|
|
|
step5_install_thunderbird
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-10-14 18:15:33 +02:00
|
|
|
# Check if 'wget', 'aria2c' & 'axel' are installed,
|
2015-03-21 20:04:17 +01:00
|
|
|
# define the corresponding variable and initialize the
|
|
|
|
# 'step4_choose_app_download' function.
|
|
|
|
function check_downloaders_on_system() {
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
wget --help > /dev/null
|
|
|
|
if [ "$?" -eq 0 ] ; then
|
|
|
|
WGET=Available
|
|
|
|
else
|
|
|
|
WGET='Not available'
|
|
|
|
fi
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
aria2c --help > /dev/null
|
|
|
|
if [ "$?" -eq 0 ] ; then
|
|
|
|
ARIA2C=Available
|
|
|
|
else
|
|
|
|
ARIA2C='Not available'
|
2015-10-14 18:15:33 +02:00
|
|
|
fi
|
2015-03-21 20:04:17 +01:00
|
|
|
|
|
|
|
axel --help > /dev/null
|
|
|
|
if [ "$?" -eq 0 ] ; then
|
|
|
|
AXEL=Available
|
|
|
|
else
|
|
|
|
AXEL='Not available'
|
2015-10-14 18:15:33 +02:00
|
|
|
fi
|
2015-03-21 20:04:17 +01:00
|
|
|
step4_choose_app_download
|
|
|
|
}
|
|
|
|
|
|
|
|
# Check if exist a previous installation of thunderbird and
|
|
|
|
# allows overwrite it, uninstall it or exit to cancel.
|
|
|
|
# Initialize the 'step1_choose_version' function too.
|
|
|
|
function check_other_installs_on_system(){
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
if [ -d /opt/thunderbird/ ]; then
|
|
|
|
clear
|
2015-10-14 18:15:33 +02:00
|
|
|
echo ""
|
|
|
|
echo "Detected a previous installation of Thunderbird"
|
|
|
|
echo "Do you want to overwrite or uninstall the current version?"
|
|
|
|
echo ""
|
|
|
|
echo "(1) - overwrite"
|
|
|
|
echo "(2) - uninstall"
|
|
|
|
echo "(3) - quit (q)"
|
|
|
|
echo ""
|
|
|
|
echo -n "(Default: overwrite) Choose an option; " ; read INST
|
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
if [ "${INST:-NO_VALUE}" == "NO_VALUE" ] ; then
|
|
|
|
get_list_versions
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "$INST" == "1" -o "$INST" == "overwrite" ] ; then
|
|
|
|
get_list_versions
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "$INST" == "2" -o "$INST" == "uninstall" ] ; then
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
clear
|
2015-10-14 18:15:33 +02:00
|
|
|
echo ""
|
|
|
|
echo "Uninstalling thunderbird, please wait..."
|
|
|
|
echo ""
|
2015-03-21 20:04:17 +01:00
|
|
|
sleep 5
|
|
|
|
rm -rf /usr/bin/thunderbird
|
|
|
|
rm -rf /usr/share/applications/thunderbird.desktop
|
|
|
|
rm -rf /opt/thunderbird/
|
2015-10-14 18:15:33 +02:00
|
|
|
echo "Done!"
|
|
|
|
echo ""
|
2015-03-21 20:04:17 +01:00
|
|
|
exit
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "$INST" == "3" -o "$INST" == "quit" -o "$INST" == "q" ]; then
|
|
|
|
exit
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
else
|
2015-10-14 18:15:33 +02:00
|
|
|
clear
|
|
|
|
echo ""
|
|
|
|
echo "Invalid option, please, choose any available option"
|
|
|
|
echo ""
|
|
|
|
echo -n "Press 'ENTER' to return "
|
2015-03-21 20:04:17 +01:00
|
|
|
read notoption
|
|
|
|
check_other_installs_on_system
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
get_list_versions
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-10-06 19:50:14 +02:00
|
|
|
# Check if 'git' is installed and cancel the installation
|
2015-03-21 20:04:17 +01:00
|
|
|
# if it is not installed. Initialize the 'check_other_installs_on_system'
|
|
|
|
# too.
|
|
|
|
function check_curl_on_system(){
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
curl --help > /dev/null
|
|
|
|
if [ "$?" -eq 0 ] ; then
|
|
|
|
check_other_installs_on_system
|
|
|
|
else
|
|
|
|
clear
|
2015-10-14 18:15:33 +02:00
|
|
|
echo ""
|
|
|
|
echo "Error: Need 'curl' installed on your system!"
|
|
|
|
echo ""
|
2015-03-21 20:04:17 +01:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Define the variable 'APP_DOWNLOAD' and
|
2015-10-06 19:50:14 +02:00
|
|
|
# initialize the 'step5_install_thunderbird'
|
2015-03-21 20:04:17 +01:00
|
|
|
# function.
|
|
|
|
function step4_choose_app_download(){
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
clear
|
2015-10-14 18:15:33 +02:00
|
|
|
echo ""
|
|
|
|
echo "[ Step 4/5 (App to download) ]"
|
|
|
|
echo ""
|
|
|
|
echo "Available apps to download:"
|
|
|
|
echo ""
|
|
|
|
echo "(1) - wget ($WGET)"
|
|
|
|
echo "(2) - aria2c ($ARIA2C)"
|
|
|
|
echo "(3) - axel ($AXEL)"
|
|
|
|
echo "(4) - curl (Available)"
|
|
|
|
echo ""
|
|
|
|
echo "(q) - quit"
|
|
|
|
echo ""
|
2015-03-21 20:04:17 +01:00
|
|
|
APP=0
|
2015-10-14 18:15:33 +02:00
|
|
|
echo -n "(Default: curl) Choose an option; " ; read APP
|
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
if [ "$APP" == "1" -o "$APP" == "wget" ] ; then
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
# Check if 'wget' is available using the variable
|
|
|
|
# defined in 'check_downloaders_on_system' function.
|
|
|
|
if [ "$WGET" == "Available" ]; then
|
|
|
|
APP_DOWNLOAD='wget -c'
|
|
|
|
NAME_APP='wget'
|
2015-10-06 19:50:14 +02:00
|
|
|
step5_install_thunderbird
|
2015-03-21 20:04:17 +01:00
|
|
|
else
|
|
|
|
clear
|
2015-10-14 18:15:33 +02:00
|
|
|
echo ""
|
|
|
|
echo "'wget' is not available in your system"
|
|
|
|
echo ""
|
|
|
|
echo -n "Press 'ENTER' to return "
|
2015-03-21 20:04:17 +01:00
|
|
|
read not
|
|
|
|
step4_choose_app_download
|
|
|
|
fi
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "$APP" == "2" -o "$APP" == "aria2c" ] ; then
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
# Check if 'aria2c' is available using the variable
|
|
|
|
# defined in 'check_downloaders_on_system' function.
|
|
|
|
if [ "$ARIA2C" == "Available" ]; then
|
|
|
|
APP_DOWNLOAD='aria2c --check-certificate=false'
|
|
|
|
NAME_APP='aria2c'
|
2015-10-06 19:50:14 +02:00
|
|
|
step5_install_thunderbird
|
2015-03-21 20:04:17 +01:00
|
|
|
else
|
|
|
|
clear
|
2015-10-14 18:15:33 +02:00
|
|
|
echo ""
|
|
|
|
echo "'aria2c' is not available in your system"
|
|
|
|
echo ""
|
|
|
|
echo -n "Press 'ENTER' to return "
|
2015-03-21 20:04:17 +01:00
|
|
|
read not
|
|
|
|
step4_choose_app_download
|
|
|
|
fi
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "$APP" == "3" -o "$APP" == "axel" ] ; then
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
# Check if 'axel' is available using the variable
|
|
|
|
# defined in 'check_downloaders_on_system' function.
|
|
|
|
if [ "$AXEL" == "Available" ]; then
|
|
|
|
APP_DOWNLOAD='axel'
|
|
|
|
NAME_APP='axel'
|
2015-10-06 19:50:14 +02:00
|
|
|
step5_install_thunderbird
|
2015-03-21 20:04:17 +01:00
|
|
|
else
|
|
|
|
clear
|
2015-10-14 18:15:33 +02:00
|
|
|
echo ""
|
|
|
|
echo "'axel' is not available in your system"
|
|
|
|
echo ""
|
|
|
|
echo -n "Press 'ENTER' to return "
|
2015-03-21 20:04:17 +01:00
|
|
|
read not
|
|
|
|
step4_choose_app_download
|
|
|
|
fi
|
2015-10-06 19:50:14 +02:00
|
|
|
|
|
|
|
elif [ "$APP" == "4" -o "$APP" == "curl" ] ; then
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-10-06 19:50:14 +02:00
|
|
|
APP_DOWNLOAD='curl'
|
|
|
|
NAME_APP='curl'
|
|
|
|
step5_install_thunderbird
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "$APP" == "q" -o "$APP" == "quit" ] ; then
|
|
|
|
exit
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "${APP:-NO_VALUE}" == "NO_VALUE" ] ; then
|
|
|
|
|
2015-10-14 18:15:33 +02:00
|
|
|
APP_DOWNLOAD='curl'
|
|
|
|
NAME_APP='curl'
|
|
|
|
step5_install_thunderbird
|
2015-03-21 20:04:17 +01:00
|
|
|
else
|
2015-10-14 18:15:33 +02:00
|
|
|
clear
|
|
|
|
echo ""
|
|
|
|
echo "Invalid option, please, choose any available app"
|
|
|
|
echo ""
|
|
|
|
echo -n "Press 'ENTER' to return "
|
2015-03-21 20:04:17 +01:00
|
|
|
read notapp
|
|
|
|
step4_choose_app_download
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Define the variable 'AR' and initialize
|
|
|
|
# the 'check_downloaders_on_system' function.
|
|
|
|
function step3_choose_arch(){
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
clear
|
2015-10-14 18:15:33 +02:00
|
|
|
echo ""
|
|
|
|
echo "[ Step 3/5 (Arch) ]"
|
|
|
|
echo ""
|
|
|
|
echo "Available Arch:"
|
|
|
|
echo ""
|
|
|
|
echo "(1) - 32 bits (linux-i686)"
|
|
|
|
echo "(2) - 64 bits (linux-x86_64)"
|
|
|
|
echo ""
|
|
|
|
echo "(q) - quit"
|
|
|
|
echo ""
|
|
|
|
echo -n "(Default: autodetect) Choose an option; " ; read AR
|
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
if [ "${AR:-NO_VALUE}" == "NO_VALUE" ] ; then
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
# Detect the arch of the system if variable
|
|
|
|
# 'AR' is empty.
|
|
|
|
archs=`uname -m`
|
|
|
|
case "$archs" in
|
|
|
|
i?86)
|
|
|
|
ARCH=linux-i686
|
|
|
|
check_downloaders_on_system
|
|
|
|
;;
|
|
|
|
x86_64)
|
|
|
|
ARCH=linux-x86_64
|
|
|
|
check_downloaders_on_system
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Unsupported Arquitecture ($archs)"
|
|
|
|
exit 0
|
|
|
|
esac
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "$AR" == "1" -o "$AR" == "32" ] ; then
|
|
|
|
ARCH=linux-i686
|
|
|
|
check_downloaders_on_system
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "$AR" == "2" -o "$AR" == "64" ] ; then
|
|
|
|
ARCH=linux-x86_64
|
|
|
|
check_downloaders_on_system
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "$AR" == "q" -o "$AR" == "quit" ] ; then
|
|
|
|
exit
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
else
|
2015-10-14 18:15:33 +02:00
|
|
|
clear
|
|
|
|
echo ""
|
|
|
|
echo "Invalid option, please, choose any available arch"
|
|
|
|
echo ""
|
|
|
|
echo -n "Press 'ENTER' to return "
|
2015-03-21 20:04:17 +01:00
|
|
|
read notarch
|
|
|
|
step3_choose_arch
|
|
|
|
fi
|
|
|
|
}
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
# Define the variable 'LANGUAGE' and initialize the
|
|
|
|
# 'step3_choose_arch' funtion.
|
|
|
|
function step2_choose_language(){
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
FILE_LANGUAGES=/tmp/thunderbird-languages
|
|
|
|
clear
|
2015-10-14 18:15:33 +02:00
|
|
|
echo ""
|
|
|
|
echo "[ Step 2/5 (Language) ]"
|
|
|
|
echo ""
|
|
|
|
echo "Available languages:"
|
|
|
|
echo ""
|
|
|
|
echo "[ach] [af] [an] [ar] [as] [ast] [be]" > $FILE_LANGUAGES
|
|
|
|
echo "[bg] [bn-BD] [bn-IN] [br] [bs] [ca]" >> $FILE_LANGUAGES
|
|
|
|
echo "[cs] [csb] [cy] [da] [de] [el] [en-GB]" >> $FILE_LANGUAGES
|
|
|
|
echo "[en-US] [en-ZA] [eo] [es-AR] [es-CL]" >> $FILE_LANGUAGES
|
|
|
|
echo "[es-ES] [es-MX] [et] [eu] [fa] [ff] [fi]" >> $FILE_LANGUAGES
|
|
|
|
echo "[fr] [fy-NL] [ga-IE] [gd] [gl] [gu-IN]" >> $FILE_LANGUAGES
|
|
|
|
echo "[he] [hi-IN] [hr] [hu] [hy-AM] [id]" >> $FILE_LANGUAGES
|
|
|
|
echo "[is] [it] [ja] [kk] [km] [kn] [ko] [ku]" >> $FILE_LANGUAGES
|
|
|
|
echo "[lij] [lt] [lv] [mai] [mk] [ml] [mr]" >> $FILE_LANGUAGES
|
|
|
|
echo "[ms] [nb-NO] [nl] [nn-NO] [or] [pa-IN]" >> $FILE_LANGUAGES
|
|
|
|
echo "[pl] [pt-BR] [pt-PT] [rm] [ro] [ru]" >> $FILE_LANGUAGES
|
|
|
|
echo "[si] [sk] [sl] [son] [sq] [sr] [sv-SE]" >> $FILE_LANGUAGES
|
|
|
|
echo "[sw] [ta] [te] [th] [tr] [uk] [vi] [xh]" >> $FILE_LANGUAGES
|
|
|
|
echo "[xpi] [zh-CN] [zh-TW] [zu]" >> $FILE_LANGUAGES
|
2015-03-21 20:04:17 +01:00
|
|
|
cat $FILE_LANGUAGES
|
2015-10-14 18:15:33 +02:00
|
|
|
echo ""
|
|
|
|
echo -n "(Default: en-US) Type the language; " ; read LANG
|
2015-03-21 20:04:17 +01:00
|
|
|
COUNT=1
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
# Check if the variable 'LANG' is empty.
|
|
|
|
if [ "${LANG:-NO_VALUE}" != "NO_VALUE" ] ; then
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
# Check if the variable 'LANG' is valid.
|
|
|
|
while [ $COUNT -le 10 ]; do
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
LANGUAGE_VAR=`cat $FILE_LANGUAGES | grep $LANG | cut -d "[" -f $COUNT | cut -d "]" -f 1`
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
if [ "$LANGUAGE_VAR" == "$LANG" ]; then
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
LANGUAGE=$LANG
|
|
|
|
step3_choose_arch
|
2015-10-14 18:15:33 +02:00
|
|
|
|
|
|
|
else
|
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
COUNT=`expr $COUNT + 1`
|
|
|
|
fi
|
|
|
|
done
|
2015-10-14 18:15:33 +02:00
|
|
|
|
|
|
|
clear
|
|
|
|
echo ""
|
|
|
|
echo "Language '$LANG' is not valid, please, type any available language"
|
|
|
|
echo ""
|
|
|
|
echo -n "Press 'ENTER' to return "
|
2015-03-21 20:04:17 +01:00
|
|
|
read notlang
|
|
|
|
step2_choose_language
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
else
|
|
|
|
LANGUAGE=en-US
|
|
|
|
step3_choose_arch
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Get the list of available thunderbird versions using 'curl',
|
2015-10-06 19:50:14 +02:00
|
|
|
# and initialize the 'step2_choose_language' function.
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
function get_list_versions() {
|
2015-10-14 18:15:33 +02:00
|
|
|
|
|
|
|
clear
|
|
|
|
echo ""
|
|
|
|
echo "Getting information of available versions, please wait.."
|
|
|
|
echo ""
|
2015-10-06 19:50:14 +02:00
|
|
|
TMP_FILE_STABLE=/tmp/moz_versions_st
|
|
|
|
TMP_FILE_BETA=/tmp/moz_versions_bt
|
|
|
|
TMP_FILE_ESR=/tmp/moz_versions_esr
|
|
|
|
HTTP_THUNDERBIRD=http://archive.mozilla.org/pub/thunderbird/releases
|
2015-10-26 16:39:27 +01:00
|
|
|
curl "$HTTP_THUNDERBIRD/latest/linux-x86_64/en-US/" | grep "tar.bz2" | cut -d "-" -f 4 | cut -d "<" -f 1 | cut -d '"' -f 1 | tail -n 1 > $TMP_FILE_STABLE
|
|
|
|
curl "$HTTP_THUNDERBIRD/latest-beta/linux-x86_64/en-US/" | grep "tar.bz2" | cut -d "-" -f 5 | cut -d "<" -f 1 | cut -d '"' -f 1 | tail -n 1 > $TMP_FILE_BETA
|
|
|
|
curl "$HTTP_THUNDERBIRD/latest-esr/linux-x86_64/en-US/" | grep "tar.bz2" | cut -d "-" -f 5 | cut -d "<" -f 1 | cut -d '"' -f 1 | tail -n 1 > $TMP_FILE_ESR
|
2015-03-21 20:04:17 +01:00
|
|
|
error=$?
|
|
|
|
if [ $? -eq 0 ] ; then
|
2015-10-14 18:15:33 +02:00
|
|
|
echo "OK" > /dev/null
|
2015-03-21 20:04:17 +01:00
|
|
|
step1_choose_version
|
|
|
|
else
|
|
|
|
clear
|
2015-10-14 18:15:33 +02:00
|
|
|
echo ""
|
|
|
|
echo "Error: Failed to obtain the required information from the server!"
|
|
|
|
echo "Connection Fail!"
|
|
|
|
echo ""
|
2015-03-21 20:04:17 +01:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
}
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
function step1_choose_version(){
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-10-06 19:50:14 +02:00
|
|
|
THUNDERBIRD_STABLE=`cat $TMP_FILE_STABLE`
|
|
|
|
THUNDERBIRD_BETA=`cat $TMP_FILE_BETA`
|
|
|
|
THUNDERBIRD_ESR=`cat $TMP_FILE_ESR`
|
|
|
|
DEFAULT=`cat $TMP_FILE_STABLE`
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
clear
|
2015-10-14 18:15:33 +02:00
|
|
|
echo ""
|
|
|
|
echo "[ Step 1/5 (Version) ]"
|
|
|
|
echo ""
|
|
|
|
echo "Available Versions:"
|
|
|
|
echo ""
|
|
|
|
echo "(1) - thunderbird-$THUNDERBIRD_ESR (ESR)"
|
|
|
|
echo "(2) - thunderbird-$THUNDERBIRD_STABLE (stable)"
|
|
|
|
echo "(3) - thunderbird-$THUNDERBIRD_BETA (beta)"
|
|
|
|
echo ""
|
|
|
|
echo "(q) - quit"
|
|
|
|
echo ""
|
|
|
|
echo -n "(Default: thunderbird-$DEFAULT) Choose an option; " ; read VER
|
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
if [ "$VER" == "1" -o "$VER" == "ESR" ] ; then
|
|
|
|
VERSION=$THUNDERBIRD_ESR
|
2015-10-06 19:50:14 +02:00
|
|
|
RELEASE="latest-esr"
|
2015-03-21 20:04:17 +01:00
|
|
|
step2_choose_language
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "$VER" == "2" -o "$VER" == "stable" ] ; then
|
|
|
|
VERSION=$THUNDERBIRD_STABLE
|
2015-10-06 19:50:14 +02:00
|
|
|
RELEASE="latest"
|
2015-03-21 20:04:17 +01:00
|
|
|
step2_choose_language
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "$VER" == "3" -o "$VER" == "beta" ] ; then
|
|
|
|
VERSION=$THUNDERBIRD_BETA
|
2015-10-06 19:50:14 +02:00
|
|
|
RELEASE="latest-beta"
|
2015-03-21 20:04:17 +01:00
|
|
|
step2_choose_language
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "${VER:-NO_VALUE}" == "NO_VALUE" ] ; then
|
|
|
|
VERSION=$DEFAULT
|
2015-10-06 19:50:14 +02:00
|
|
|
RELEASE="latest"
|
2015-03-21 20:04:17 +01:00
|
|
|
step2_choose_language
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
elif [ "$VER" == "q" -o "$VER" == "quit" ] ; then
|
|
|
|
exit
|
2015-10-14 18:15:33 +02:00
|
|
|
|
2015-03-21 20:04:17 +01:00
|
|
|
else
|
2015-10-14 18:15:33 +02:00
|
|
|
clear
|
|
|
|
echo ""
|
|
|
|
echo "Invalid option, please, choose any available version"
|
|
|
|
echo ""
|
|
|
|
echo -n "Press 'ENTER' to return "
|
2015-03-21 20:04:17 +01:00
|
|
|
read notversion
|
|
|
|
step1_choose_version
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Initialize the first step of the installation.
|
|
|
|
check_curl_on_system
|