homebrew-core/Formula/elb-tools.rb
Aviv Ben-Yosef 8bd8b7dc01 Update elb-tools to 1.0.11.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-02-04 07:31:00 -08:00

21 lines
532 B
Ruby

require 'formula'
# Require ec2-api-tools to get the base class
require "#{File.dirname __FILE__}/ec2-api-tools.rb"
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.11.0'
md5 '453423aaf439a7a796fcaafffa88aef8'
depends_on 'ec2-api-tools'
def install
standard_install
end
def caveats
standard_instructions "AWS_ELB_HOME"
end
end