blob: 2c757ff3560d5f0f6d02de10c023309dc1d19552 (
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.15.1'
md5 '8807c6192a58cc08d289ff4af1a6caa8'
depends_on 'ec2-api-tools'
def install
standard_install
end
def caveats
standard_instructions "AWS_ELB_HOME"
end
end
|