homebrew-core/Formula/auto-scaling.rb
Guillaume Plessis a0472f0b06 auto-scaling: Update to 1.0.39.0
Closes Homebrew/homebrew#8596.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-11-15 11:24:41 -08:00

19 lines
481 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.39.0'
homepage 'http://aws.amazon.com/developertools/2535'
url 'http://ec2-downloads.s3.amazonaws.com/AutoScaling-2011-01-01.zip'
md5 '493a43448e09b80d701383cf4c388a82'
def install
standard_install
end
def caveats
standard_instructions "AWS_AUTO_SCALING_HOME"
end
end