Created
September 26, 2012 19:05
-
-
Save mikepfirrmann/3789908 to your computer and use it in GitHub Desktop.
Install Uniconvertor from source
This file contains 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
#!/bin/bash | |
# http://ubuntuforums.org/showthread.php?t=1865589 says to do this | |
sudo apt-get install build-essential python-all-dev liblcms1-dev libjpeg62-dev libpaps-dev | |
# Uniconvertor packages do not seem to install properly on Ubuntu 12.04, so | |
# I installed from source. | |
svn co https://sk1.svn.sourceforge.net/svnroot/sk1/trunk/sk1libs /tmp/sk1libs | |
sudo python /tmp/sk1libs/setup.py install | |
svn co https://uniconvertor.svn.sourceforge.net/svnroot/uniconvertor/UniConvertor/trunk /tmp/uniconvertor | |
sudo python /tmp/uniconvertor/uniconvertor/setup.py install | |
sudo python /tmp/uniconvertor/uniconvw/setup.py install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment