blob: 895429c6e7506015110a60be9ca9b74db3d1bd2e (
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://developer.amazonwebservices.com/connect/entry.jspa?categoryID=251&externalID=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
|