aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/elb-tools.rb
blob: 7283995d1088d88828a651a9dc553e5ca3795d39 (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.33.0'
  sha1 '4415660b6104b02f1f91ac7528a231ef7661d543'

  depends_on 'ec2-api-tools'

  def install
    standard_install
  end

  def caveats
    standard_instructions "AWS_ELB_HOME"
  end
end