Skip to content

Instantly share code, notes, and snippets.

@ionatan-israel
Forked from cbednarski/balsamiq-installer.sh
Created March 11, 2014 00:02
Show Gist options
  • Save ionatan-israel/9477007 to your computer and use it in GitHub Desktop.
Save ionatan-israel/9477007 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
if [ $EUID != 0 ]; then
"This script must be run with sudo"
exit $?
fi
echo " Installing dependencies"
apt-get install ia32-libs -y # Note: This dep is a bit overkill but it's useful anyway
ln -s /usr/lib/i386-linux-gnu/libgnome-keyring.so.0 /usr/lib/libgnome-keyring.so.0
echo " Downloading installers"
wget -P /tmp/ http://airdownload.adobe.com/air/lin/download/2.6/AdobeAIRInstaller.bin
wget -P /tmp/ http://builds.balsamiq.com/b/mockups-desktop/MockupsForDesktop64bit.deb
echo " Installing AIR"
chmod +x /tmp/AdobeAIRInstaller.bin
/tmp/AdobeAIRInstaller.bin -silent -eulaAccepted
echo " Installing Balsamiq"
dpkg -i /tmp/MockupsForDesktop64bit.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment