diff options
| author | Aaron Suggs | 2011-02-25 11:55:26 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-03 14:17:55 -0800 |
| commit | 6ac657d4e662d81f37f494b9a4650dd948d226cf (patch) | |
| tree | c34f43eb3446dab38239f0256b86d73de806bb86 /Library | |
| parent | 96d978590095aa77f04e378e4f1829d9d290efce (diff) | |
| download | homebrew-6ac657d4e662d81f37f494b9a4650dd948d226cf.tar.bz2 | |
New formula: aws-cfn-tools
Added Amazon CloudFormation API tools
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/aws-cfn-tools.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/aws-cfn-tools.rb b/Library/Formula/aws-cfn-tools.rb new file mode 100644 index 000000000..9f58fb706 --- /dev/null +++ b/Library/Formula/aws-cfn-tools.rb @@ -0,0 +1,21 @@ +require 'formula' + +# Require ec2-api-tools to get the base class +require "#{File.dirname __FILE__}/ec2-api-tools.rb" + +class AwsCfnTools <AmazonWebServicesFormula + homepage 'http://aws.amazon.com/developertools/AWS-CloudFormation/2555753788650372' + url 'https://s3.amazonaws.com/cloudformation-cli/AWSCloudFormation-cli.zip' + version '1.0.6' + md5 'f3bff05e8e5e1a169e5f247077583b6e' + + depends_on 'ec2-api-tools' + + def install + standard_install + end + + def caveats + standard_instructions "AWS_CLOUDFORMATION_HOME" + end +end |
