diff options
| -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 |
