Better indent in source code
This commit is contained in:
parent
3f07f73dbb
commit
e7b4bb9e48
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Script to install Spotify on Debian/Ubuntu
|
# Script to install Spotify on Debian/Ubuntu
|
||||||
# Created by q3aql (q3aql@openmailbox.org)
|
# Created by q3aql (q3aql@openmailbox.org)
|
||||||
# Licensed by GPL v.2
|
# Licensed by GPL v.2
|
||||||
|
@ -11,21 +11,21 @@ URL_SPOTIFY="http://repository.spotify.com/pool/non-free/s/spotify-client"
|
||||||
|
|
||||||
#Check if user is root.
|
#Check if user is root.
|
||||||
user=$(whoami)
|
user=$(whoami)
|
||||||
if [ "$user" == "root" ] ; then
|
if [ "$user" == "root" ] ; then
|
||||||
echo "OK" > /dev/null
|
echo "OK" > /dev/null
|
||||||
else
|
else
|
||||||
echo "You must be root!"
|
echo "You must be root!"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#Check name of kernel.
|
#Check name of kernel.
|
||||||
KERNEL=$(uname -s)
|
KERNEL=$(uname -s)
|
||||||
if [ $KERNEL == "Linux" ]; then
|
if [ $KERNEL == "Linux" ]; then
|
||||||
KERNEL=linux
|
KERNEL=linux
|
||||||
else
|
else
|
||||||
echo "OS not supported ($KERNEL)"
|
echo "OS not supported ($KERNEL)"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#Check if your system is Debian or Ubuntu.
|
#Check if your system is Debian or Ubuntu.
|
||||||
CHECK_SYSTEM=`uname -a`
|
CHECK_SYSTEM=`uname -a`
|
||||||
|
@ -38,121 +38,121 @@ echo "Spotify installer ($VERSION)"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
if [ "$CHECK_SYSTEM" == "$CHECK_DEBIAN" ]; then
|
if [ "$CHECK_SYSTEM" == "$CHECK_DEBIAN" ]; then
|
||||||
echo "System detected: $CHECK_DEBIAN"
|
echo "System detected: $CHECK_DEBIAN"
|
||||||
elif [ "$CHECK_SYSTEM" == "$CHECK_UBUNTU" ]; then
|
elif [ "$CHECK_SYSTEM" == "$CHECK_UBUNTU" ]; then
|
||||||
echo "System detected: $CHECK_UBUNTU"
|
echo "System detected: $CHECK_UBUNTU"
|
||||||
else
|
else
|
||||||
echo "Your system is not Debian or Ubuntu!"
|
echo "Your system is not Debian or Ubuntu!"
|
||||||
echo -n "(Default: n) Continue anyway? (y/n): " ; read CONTINUE
|
echo -n "(Default: n) Continue anyway? (y/n): " ; read CONTINUE
|
||||||
if [ "$CONTINUE" == "y" ]; then
|
if [ "$CONTINUE" == "y" ]; then
|
||||||
echo "$CONTINUE"
|
echo "$CONTINUE"
|
||||||
else
|
else
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#Check 'curl' in your system.
|
#Check 'curl' in your system.
|
||||||
curl --help > /dev/null
|
curl --help > /dev/null
|
||||||
if [ "$?" -eq 0 ] ; then
|
if [ "$?" -eq 0 ] ; then
|
||||||
clear
|
clear
|
||||||
else
|
else
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install curl -y
|
apt-get install curl -y
|
||||||
fi
|
fi
|
||||||
#Check 'wget' in your system.
|
#Check 'wget' in your system.
|
||||||
wget --help > /dev/null
|
wget --help > /dev/null
|
||||||
if [ "$?" -eq 0 ] ; then
|
if [ "$?" -eq 0 ] ; then
|
||||||
APP_DOWNLOAD='wget -c'
|
APP_DOWNLOAD='wget -c'
|
||||||
NAME_APP_DOWNLOAD="wget"
|
NAME_APP_DOWNLOAD="wget"
|
||||||
clear
|
clear
|
||||||
else
|
else
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install wget -y
|
apt-get install wget -y
|
||||||
fi
|
fi
|
||||||
#Check 'gdebi' in your system.
|
#Check 'gdebi' in your system.
|
||||||
gdebi --help > /dev/null
|
gdebi --help > /dev/null
|
||||||
if [ "$?" -eq 0 ] ; then
|
if [ "$?" -eq 0 ] ; then
|
||||||
clear
|
clear
|
||||||
else
|
else
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install gdebi -y
|
apt-get install gdebi -y
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#Check other downloaders.
|
#Check other downloaders.
|
||||||
axel --help > /dev/null
|
axel --help > /dev/null
|
||||||
if [ "$?" -eq 0 ] ; then
|
if [ "$?" -eq 0 ] ; then
|
||||||
APP_DOWNLOAD='axel'
|
APP_DOWNLOAD='axel'
|
||||||
NAME_APP_DOWNLOAD="axel"
|
NAME_APP_DOWNLOAD="axel"
|
||||||
fi
|
fi
|
||||||
aria2c --help > /dev/null
|
aria2c --help > /dev/null
|
||||||
if [ "$?" -eq 0 ] ; then
|
if [ "$?" -eq 0 ] ; then
|
||||||
APP_DOWNLOAD='aria2c --check-certificate=false'
|
APP_DOWNLOAD='aria2c --check-certificate=false'
|
||||||
NAME_APP_DOWNLOAD="aria2c"
|
NAME_APP_DOWNLOAD="aria2c"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#Get the current versions of Spotify.
|
#Get the current versions of Spotify.
|
||||||
SPOTIFY_32=`curl $URL_SPOTIFY/ | cut -d ">" -f 2 | cut -d "<" -f 1 | grep i386 | tail -n 1`
|
SPOTIFY_32=`curl $URL_SPOTIFY/ | cut -d ">" -f 2 | cut -d "<" -f 1 | grep i386 | tail -n 1`
|
||||||
SPOTIFY_64=`curl $URL_SPOTIFY/ | cut -d ">" -f 2 | cut -d "<" -f 1 | grep amd64 | tail -n 1`
|
SPOTIFY_64=`curl $URL_SPOTIFY/ | cut -d ">" -f 2 | cut -d "<" -f 1 | grep amd64 | tail -n 1`
|
||||||
MESSAGE_32=`clear && echo "Downloading $SPOTIFY_32 ($NAME_APP_DOWNLOAD)"`
|
MESSAGE_32=`clear && echo "Downloading $SPOTIFY_32 ($NAME_APP_DOWNLOAD)"`
|
||||||
MESSAGE_64=`clear && echo "Downloading $SPOTIFY_64 ($NAME_APP_DOWNLOAD)"`
|
MESSAGE_64=`clear && echo "Downloading $SPOTIFY_64 ($NAME_APP_DOWNLOAD)"`
|
||||||
if [ $? -eq 0 ] ; then
|
if [ $? -eq 0 ] ; then
|
||||||
echo "Connection OK" > /dev/null
|
echo "Connection OK" > /dev/null
|
||||||
else
|
else
|
||||||
clear
|
clear
|
||||||
echo ""
|
echo ""
|
||||||
echo "Error: Failed to obtain the required information from the server!"
|
echo "Error: Failed to obtain the required information from the server!"
|
||||||
echo "Connection Fail!"
|
echo "Connection Fail!"
|
||||||
echo ""
|
echo ""
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#Menu
|
#Menu
|
||||||
MENU_VARIABLE=1
|
MENU_VARIABLE=1
|
||||||
while [ $MENU_VARIABLE -le 2 ] ; do
|
while [ $MENU_VARIABLE -le 2 ] ; do
|
||||||
clear
|
clear
|
||||||
echo ""
|
echo ""
|
||||||
echo "Spotify installer ($VERSION)"
|
echo "Spotify installer ($VERSION)"
|
||||||
echo ""
|
echo ""
|
||||||
echo "Installed: $SPOTIFY_VERSION"
|
echo "Installed: $SPOTIFY_VERSION"
|
||||||
echo ""
|
echo ""
|
||||||
echo "Available packages:"
|
echo "Available packages:"
|
||||||
echo ""
|
echo ""
|
||||||
echo "(1) $SPOTIFY_32 (32-bits)"
|
echo "(1) $SPOTIFY_32 (32-bits)"
|
||||||
echo "(2) $SPOTIFY_64 (64-bits)"
|
echo "(2) $SPOTIFY_64 (64-bits)"
|
||||||
echo ""
|
echo ""
|
||||||
echo "(q) - quit"
|
echo "(q) - quit"
|
||||||
echo ""
|
echo ""
|
||||||
echo -n "(Default: autodetect) Choose an option; " ; read PACKAGE
|
echo -n "(Default: autodetect) Choose an option; " ; read PACKAGE
|
||||||
if [ "${PACKAGE:-NO_VALUE}" == "NO_VALUE" ] ; then
|
if [ "${PACKAGE:-NO_VALUE}" == "NO_VALUE" ] ; then
|
||||||
|
|
||||||
# Detect the arch of the system if variable
|
# Detect the arch of the system if variable
|
||||||
# 'PACKAGE' is empty.
|
# 'PACKAGE' is empty.
|
||||||
archs=`uname -m`
|
archs=`uname -m`
|
||||||
case "$archs" in
|
case "$archs" in
|
||||||
i?86)
|
i?86)
|
||||||
cd /tmp/
|
cd /tmp/
|
||||||
echo $MESSAGE_32
|
echo $MESSAGE_32
|
||||||
$APP_DOWNLOAD $URL_SPOTIFY/$SPOTIFY_32
|
$APP_DOWNLOAD $URL_SPOTIFY/$SPOTIFY_32
|
||||||
gdebi $SPOTIFY_32
|
gdebi $SPOTIFY_32
|
||||||
rm -rf $SPOTIFY_32
|
rm -rf $SPOTIFY_32
|
||||||
echo "Exiting..."
|
echo "Exiting..."
|
||||||
MENU_VARIABLE=3
|
MENU_VARIABLE=3
|
||||||
;;
|
;;
|
||||||
x86_64)
|
x86_64)
|
||||||
cd /tmp/
|
cd /tmp/
|
||||||
echo $MESSAGE_64
|
echo $MESSAGE_64
|
||||||
$APP_DOWNLOAD $URL_SPOTIFY/$SPOTIFY_64
|
$APP_DOWNLOAD $URL_SPOTIFY/$SPOTIFY_64
|
||||||
gdebi $SPOTIFY_64
|
gdebi $SPOTIFY_64
|
||||||
rm -rf $SPOTIFY_64
|
rm -rf $SPOTIFY_64
|
||||||
echo "Exiting..."
|
echo "Exiting..."
|
||||||
MENU_VARIABLE=3
|
MENU_VARIABLE=3
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Unsupported Arquitecture ($archs)"
|
echo "Unsupported Arquitecture ($archs)"
|
||||||
exit 0
|
exit 0
|
||||||
esac
|
esac
|
||||||
|
|
||||||
elif [ "$PACKAGE" == "1" -o "$PACKAGE" == "32" ] ; then
|
elif [ "$PACKAGE" == "1" -o "$PACKAGE" == "32" ] ; then
|
||||||
cd /tmp/
|
cd /tmp/
|
||||||
echo $MESSAGE_32
|
echo $MESSAGE_32
|
||||||
$APP_DOWNLOAD $URL_SPOTIFY/$SPOTIFY_32
|
$APP_DOWNLOAD $URL_SPOTIFY/$SPOTIFY_32
|
||||||
|
@ -161,7 +161,7 @@ echo -n "(Default: autodetect) Choose an option; " ; read PACKAGE
|
||||||
echo "Exiting..."
|
echo "Exiting..."
|
||||||
MENU_VARIABLE=3
|
MENU_VARIABLE=3
|
||||||
|
|
||||||
elif [ "$PACKAGE" == "2" -o "$PACKAGE" == "64" ] ; then
|
elif [ "$PACKAGE" == "2" -o "$PACKAGE" == "64" ] ; then
|
||||||
cd /tmp/
|
cd /tmp/
|
||||||
echo $MESSAGE_64
|
echo $MESSAGE_64
|
||||||
$APP_DOWNLOAD $URL_SPOTIFY/$SPOTIFY_64
|
$APP_DOWNLOAD $URL_SPOTIFY/$SPOTIFY_64
|
||||||
|
@ -170,16 +170,16 @@ echo -n "(Default: autodetect) Choose an option; " ; read PACKAGE
|
||||||
echo "Exiting..."
|
echo "Exiting..."
|
||||||
MENU_VARIABLE=3
|
MENU_VARIABLE=3
|
||||||
|
|
||||||
elif [ "$PACKAGE" == "q" -o "$PACKAGE" == "quit" ] ; then
|
elif [ "$PACKAGE" == "q" -o "$PACKAGE" == "quit" ] ; then
|
||||||
echo "Exiting..."
|
echo "Exiting..."
|
||||||
MENU_VARIABLE=3
|
MENU_VARIABLE=3
|
||||||
|
|
||||||
else
|
else
|
||||||
clear
|
clear
|
||||||
echo ""
|
echo ""
|
||||||
echo "Invalid option, please, choose any available arch"
|
echo "Invalid option, please, choose any available arch"
|
||||||
echo ""
|
echo ""
|
||||||
echo "Press 'ENTER' to return"
|
echo "Press 'ENTER' to return"
|
||||||
read NOOPTION
|
read NOOPTION
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue
Block a user