Skip to content

Instantly share code, notes, and snippets.

@cbednarski
Last active December 16, 2015 04:49
Show Gist options
  • Save cbednarski/5379830 to your computer and use it in GitHub Desktop.
Save cbednarski/5379830 to your computer and use it in GitHub Desktop.
Install script for Balsamiq Mockups on Ubuntu 12.04.2
#!/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
@JayH5
Copy link

JayH5 commented Apr 28, 2013

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.

@digenaldo
Copy link

Many thanks for the tip.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment