blob: 9f58fb7060c023a15d7b50f427e7947625ba5487 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|