d2c0eefe65
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
21 lines
535 B
Ruby
21 lines
535 B
Ruby
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.9'
|
|
md5 'c18d85826f97fe579ba68c9c52973776'
|
|
|
|
depends_on 'ec2-api-tools'
|
|
|
|
def install
|
|
standard_install
|
|
end
|
|
|
|
def caveats
|
|
standard_instructions "AWS_CLOUDFORMATION_HOME"
|
|
end
|
|
end
|