Skip to content

Instantly share code, notes, and snippets.

@samclarke
Last active April 18, 2016 11:50
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save samclarke/33898d72ffafe7fa7250 to your computer and use it in GitHub Desktop.
Save samclarke/33898d72ffafe7fa7250 to your computer and use it in GitHub Desktop.
Small shell script to install Aptana Studio 3.4.1 in Ubuntu 12.10
#!/bin/bash
MACHINE_TYPE=`uname -m`
# Checks that the script is running as root, if not
# it will ask for permissions
# Source: http://unix.stackexchange.com/a/28796
if (($EUID != 0)); then
if [[ -t 1 ]]; then
sudo "$0" "$@"
else
exec 1>output_file
gksu "$0 $@"
fi
exit
fi
echo "Downloading Aptana Studio 3"
cd /tmp
if [ ${MACHINE_TYPE} == 'x86_64' ]; then
wget http://download.aptana.com/studio3/standalone/3.4.1/linux/Aptana_Studio_3_Setup_Linux_x86_64_3.4.1.zip -O AptanaStudio.zip
else
wget http://download.aptana.com/studio3/standalone/3.4.1/linux/Aptana_Studio_3_Setup_Linux_x86_3.4.1.zip -O AptanaStudio.zip
fi
# Create the /opt dir if it doesn't exist
if [ ! -d /opt/ ]; then
mkdir /opt/
fi
echo "Extracting Aptana Studio 3 to /opt"
unzip -q AptanaStudio.zip -d /opt/
echo "Adding Aptana Studio 3 desktop entry"
# Create the /usr/local/share/icons dir if it doesn't exist
if [ ! -d /usr/local/share/icons/ ]; then
mkdir /usr/local/share/icons/
fi
# Fix for large icon problem
cp /opt/Aptana_Studio_3/icon.xpm /usr/local/share/icons/aptanastudio3.xpm
echo "#!/usr/bin/env xdg-open
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=Aptana Studio 3
GenericName=Integrated Development Environment
Comment=Aptana Strudio 3 Integrated Development Environment
Exec=/opt/Aptana_Studio_3/AptanaStudio3 %F
TryExec=/opt/Aptana_Studio_3/AptanaStudio3
Icon=aptanastudio3
StartupNotify=true
StartupWMClass=\"Aptana Studio 3\"
Terminal=false
Type=Application
MimeType=text/xml;application/xhtml+xml;application/x-javascript;application/x-php;application/x-java;text/x-javascript;text/html;text/plain
Categories=GNOME;Development;IDE;" >> /tmp/SC-AptanaStudio.desktop
xdg-desktop-menu install /tmp/SC-AptanaStudio.desktop
echo "Aptana Studio 3 has been installed"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment