-
-
Save ionatan-israel/9477007 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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