Last active
December 16, 2015 04:49
-
-
Save cbednarski/5379830 to your computer and use it in GitHub Desktop.
Install script for Balsamiq Mockups on Ubuntu 12.04.2
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
On my system (freshly updated 13.04 64-bit) it was necessary to create a symbolic link for the other gnome-keyring shared library, libgnome-keyring.so.0.2.0
Thanks for this.