homebrew-core/Formula/aws-cfn-tools.rb
Adam Vandenberg 2f78de2be1 Move AmazonWebServicesFormula to formula_specialties
Enough formulae in core depend on this, pull it in here.
When multi-repo support lands, perhaps we could set up Homebrew-AWS.
2012-03-05 21:14:39 -08:00

18 lines
436 B
Ruby

require 'formula'
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