aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/aws-cfn-tools.rb
blob: 5b70af404ce4ad3bc98ea469a0a074cab97eb618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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