Skip to content

Instantly share code, notes, and snippets.

@chrisfonseca
Created August 31, 2013 10:02
Show Gist options
  • Save chrisfonseca/6397320 to your computer and use it in GitHub Desktop.
Save chrisfonseca/6397320 to your computer and use it in GitHub Desktop.
ImageMagick Recipe
if node[:ruby_version][/ruby 1\.9/i]
enable_package "media-libs/lcms" do
version "2.3"
end
enable_package "media-gfx/imagemagick" do
version "6.7.8.8-r1"
end
package "media-gfx/imagemagick" do
version "6.7.8.8-r1"
action :install
end
else
package "media-gfx/imagemagick" do
version "6.4.8.3"
action :install
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment