forked from chef-boneyard/cookbooks
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
jtimberman
committed
Nov 7, 2011
1 parent
c89a9cf
commit 1a69cd1
Showing
2 changed files
with
23 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,20 @@ | ||
= DESCRIPTION: | ||
Description | ||
=========== | ||
|
||
Installs ImageMagick and optionally Rmagick (RubyGem). | ||
|
||
= REQUIREMENTS: | ||
Requirements | ||
============ | ||
|
||
Should work on RHEL and Debian plus derivatives. | ||
## Platform: | ||
|
||
= USAGE: | ||
Tested on: | ||
|
||
* Ubuntu (10.04) | ||
* RHEL (6.1, 5.7) | ||
|
||
Usage | ||
===== | ||
|
||
To install just ImageMagick, | ||
|
||
|
@@ -22,7 +30,15 @@ To install the RubyGem rmagick, | |
|
||
Which will install imagemagick, as well as the development libraries for imagemagick (so rmagick can be built). | ||
|
||
= LICENSE: | ||
Changes | ||
======= | ||
|
||
## v0.2.2: | ||
|
||
* Fixes COOK-662 | ||
|
||
License and Author | ||
================== | ||
|
||
Author:: Joshua Timberman (<[email protected]>) | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
maintainer_email "[email protected]" | ||
license "Apache 2.0" | ||
description "Installs/Configures imagemagick" | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.rdoc')) | ||
version "0.2.0" | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
version "0.2.2" | ||
|
||
recipe "imagemagick", "Installs imagemagick package" | ||
recipe "imagemagick::devel", "Installs imagemagick development libraries" | ||
|