FirefoxInstallerLinux/extras/seamonkey/seamonkey_installer_32

83 lines
2.1 KiB
Plaintext
Raw Normal View History

2021-07-18 14:37:39 -07:00
#!/bin/sh
2021-08-05 16:20:27 -07:00
#based on v1.0
2021-07-18 14:37:39 -07:00
2021-08-02 05:39:09 -07:00
VERSIONFIREFOX=$(curl https://raw.githubusercontent.com/Can202/FirefoxInstallerLinux/develop/versions/seamonkey)
2021-07-18 14:37:39 -07:00
ARCHT="i686"
clear
echo "Seamonkey Installer"
echo "by Can202"
depen=true
echo "checking dependencies..."
if [ ! -f "/usr/bin/git" ]
then
echo git is not installed...
depen=false
read nothing
fi
2021-08-02 05:54:30 -07:00
if [ ! -f "/usr/bin/curl" ]
2021-07-18 14:37:39 -07:00
then
2021-08-02 05:54:30 -07:00
echo curl is not installed...
2021-07-18 14:37:39 -07:00
depen=false
read nothing
fi
if [ ! -f "/usr/bin/tar" ]
then
echo tar is not installed...
depen=false
read nothing
fi
if [ $depen = "false" ]
then
exit
fi
cd /tmp/
# removing cache
if [ -d "/tmp/FirefoxInstalerCache/" ]
then
rm -R FirefoxInstalerCache/
fi
mkdir FirefoxInstalerCache/
cd FirefoxInstalerCache/
echo "Cache folder created"
curl -O https://archive.mozilla.org/pub/seamonkey/releases/$VERSIONFIREFOX/linux-$ARCHT/en-US/seamonkey-$VERSIONFIREFOX.en-US.linux-$ARCHT.tar.bz2
2021-07-18 14:37:39 -07:00
tar -xjvf seamonkey-$VERSIONFIREFOX.en-US.linux-$ARCHT.tar.bz2
echo "Seamonkey binary downloaded and unzipped"
git clone https://github.com/Can202/FirefoxInstallerLinux
cd FirefoxInstallerLinux/
2021-08-05 16:20:27 -07:00
git checkout v1.0
2021-07-18 14:37:39 -07:00
cd ../
echo "media cloned!"
sed -i 's/userh/'$USER'/g' FirefoxInstallerLinux/extras/seamonkey/seamonkey-addressbook-can.desktop
sed -i 's/userh/'$USER'/g' FirefoxInstallerLinux/extras/seamonkey/seamonkey-mail-can.desktop
sed -i 's/userh/'$USER'/g' FirefoxInstallerLinux/extras/seamonkey/seamonkey-can.desktop
sed -i 's/userh/'$USER'/g' FirefoxInstallerLinux/extras/seamonkey/seamonkey-can
cp -R seamonkey/ /home/$USER/.seamonkey-can
chmod a+x FirefoxInstallerLinux/extras/seamonkey/seamonkey-can
cp FirefoxInstallerLinux/extras/seamonkey/seamonkey-can.desktop /home/$USER/.local/share/applications/
cp FirefoxInstallerLinux/extras/seamonkey/seamonkey-mail-can.desktop /home/$USER/.local/share/applications/
cp FirefoxInstallerLinux/extras/seamonkey/seamonkey-addressbook-can.desktop /home/$USER/.local/share/applications/
cp FirefoxInstallerLinux/extras/seamonkey/seamonkey-can /home/$USER/.seamonkey-can/
2021-07-22 20:46:20 -07:00
echo "Seamonkey installed"
2021-07-18 14:37:39 -07:00
cd ../
rm -R FirefoxInstalerCache/
echo "chache removed!"