Last active
August 29, 2015 14:07
-
-
Save jordanwesthoff/a95b5420e67bc7017ed7 to your computer and use it in GitHub Desktop.
Dpxconvert
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 | |
# Simplistic steps to install dpxconvert | |
# Make sure you are in the directory 'Sweenet Arriraw_1_0' | |
# example /Users/user/Downloads/Sweeney\ Arriraw_1_0 | |
# Make sure to install the dpxconvert dependency, libTiff, before dpxconvert | |
cd src | |
cd tiff-3.8.0 | |
make | |
sudo make install | |
make clean | |
# Now navigate up a directory and install dpxconvert | |
cd .. | |
make | |
sudo make install | |
make clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment