Created
February 10, 2011 00:33
-
-
Save jpwatts/819680 to your computer and use it in GitHub Desktop.
In which I finally get pyexiv2 working on my Mac using Homebrew and a series of disgusting hacks
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
#!/bin/sh | |
brew install python boost exiv2 | |
curl -O http://launchpadlibrarian.net/61465005/pyexiv2-0.3.0.tar.bz2 | |
tar xjvf pyexiv2-0.3.0.tar.bz2 | |
cd pyexiv2-0.3.0 | |
# https://answers.launchpad.net/pyexiv2/+question/140742 | |
echo "env['FRAMEWORKS'] += ['Python']" >> src/SConscript | |
scons BOOSTLIB=boost_python-mt | |
# https://answers.launchpad.net/pyexiv2/+question/132670 | |
install_name_tool -change /System/Library/Frameworks/Python.framework/Versions/2.6/Python \ | |
/usr/local/Cellar/python/2.7.1/lib/libpython2.7.dylib \ | |
build/libexiv2python.dylib | |
scons BOOSTLIB=boost_python-mt install | |
# https://answers.launchpad.net/pyexiv2/+question/140742 | |
ln -s /usr/local/Cellar/python/2.7.1/lib/python2.7/site-packages/libexiv2python.dylib \ | |
/usr/local/Cellar/python/2.7.1/lib/python2.7/site-packages/libexiv2python.so |
I would just add scons to the brew install command
This gist is a little bit outdated, now with homebrew, you can just do
brew install exiv2 pyexiv2
Done!
Where's the like button? :)
Thank you!
Still an issue, thank you :D
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
zomg i love you. this was pissing me off.