homebrew-core/Formula/auto-scaling.rb
Keith Fitzgerald 24a8548d47 updated ec2 autoscaling tools
Closes Homebrew/homebrew#3751.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2010-12-30 14:36:31 +00:00

19 lines
No EOL
526 B
Ruby

require 'formula'
# Require ec2-api-tools to get the base class
require "#{File.dirname __FILE__}/ec2-api-tools.rb"
class AutoScaling <AmazonWebServicesFormula
version '1.0.33.1'
homepage 'http://developer.amazonwebservices.com/connect/entry.jspa?externalID=2535&categoryID=251'
url 'http://ec2-downloads.s3.amazonaws.com/AutoScaling-2010-08-01.zip'
md5 'e2cfe8820cd5906bf520cf6069d9b95d'
def install
standard_install
end
def caveats
standard_instructions "AWS_AUTO_SCALING_HOME"
end
end