Installs imagemagick (7.0.4) from source.
Tested on Ubuntu 14.04.
Include imagemagick in your node's run_list:
{
"run_list": [
"recipe[imagemagick::source]"
]
}Include this cookbook in your Cheffile:
cookbook "imagemagick", :git => "https://github.com/teamsquare/chef-imagemagick"Then include this in your Vagrant file
config.vm.provision :chef_solo do |chef|
...
chef.add_recipe 'imagemagick::source'
...
end- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git add -p ./path/to/files; git commit -m 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
The recipe is available as open source under the terms of the MIT License.