Last active
December 26, 2015 13:09
-
-
Save joshrieken/7156583 to your computer and use it in GitHub Desktop.
Compiling ImageMagick with jasper support via homebrew
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
Install jasper: | |
$ brew install jasper | |
Uninstall your version of imagemagick: | |
$ brew uninstall imagemagick | |
Gain access to previous versions of homebrew packages: | |
$ brew tap homebrew/versions | |
Now, check out the version of ImageMagick corresponding to our project's version of RMagick (6.8.6-3): | |
$ cd /usr/local && git checkout 870d5e9 /usr/local/Library/Formula/imagemagick.rb | |
Then install with jasper support: | |
$ brew install imagemagick --with-jasper |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment