blob: b91a6025e1b0412891f6505dc4636593a39a801d (
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.35.0'
sha1 '976f885c8a437183b2bb0c8127375e5f6371f498'
depends_on 'ec2-api-tools'
def install
standard_install
end
def caveats
standard_instructions "AWS_ELB_HOME"
end
end
|