2f78de2be1
Enough formulae in core depend on this, pull it in here. When multi-repo support lands, perhaps we could set up Homebrew-AWS.
18 lines
434 B
Ruby
18 lines
434 B
Ruby
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
|