aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/elb-tools.rb
blob: 931678c180ebcfaec1dc6ac7dfa364f35572e23d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class ElbTools < AmazonWebServicesFormula
  homepage 'http://aws.amazon.com/developertools/2536'
  url 'http://ec2-downloads.s3.amazonaws.com/ElasticLoadBalancing.zip'
  version '1.0.17.0'
  sha1 '0546f9dde4a98e2371cf7a03b419bab09254f99c'

  depends_on 'ec2-api-tools'

  def install
    standard_install
  end

  def caveats
    standard_instructions "AWS_ELB_HOME"
  end
end