aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/elb-tools.rb
blob: c0b820e7da0fb264c192f5044a8b1402ea750c31 (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.34.0'
  sha1 '3d2c30a8fe8294a51463aac6ec926b908cc11f4a'

  depends_on 'ec2-api-tools'

  def install
    standard_install
  end

  def caveats
    standard_instructions "AWS_ELB_HOME"
  end
end