homebrew-core/Formula/elb-tools.rb
Andy Kent 103de5d046 Added Amazon Elastic Load Balancer API tools
Signed-off-by: Adam Vandenberg <flangy@gmail.com>

* Updated to use aws tools base class.
2010-05-19 21:25:42 -07:00

20 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.9.3'
md5 'ffe5cacb93f2f281996fbe8b501da5ac'
def install
rm "bin/.COMPONENT_CACHED"
standard_install
end
def caveats
standard_instructions "AWS_ELB_HOME"
end
end