aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/aws-cfn-tools.rb
blob: 498d89de4767765fd2a7622fbf94c26fcfa1b193 (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.10'
  sha1 '656a81c5f3078dc7550a0512aa97b67ebd0331f1'

  depends_on 'ec2-api-tools'

  def install
    standard_install
  end

  def caveats
    standard_instructions "AWS_CLOUDFORMATION_HOME"
  end
end