homebrew-core/Formula/cloud-watch.rb
Lasantha Kularatne f38e9438b8 AWS cloud-watch 1.0.13.4
Closes Homebrew/homebrew#15025.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-20 20:07:34 -07:00

20 lines
473 B
Ruby

require 'formula'
class CloudWatch < AmazonWebServicesFormula
homepage 'http://aws.amazon.com/developertools/2534'
url 'http://ec2-downloads.s3.amazonaws.com/CloudWatch-2010-08-01.zip'
version '1.0.13.4'
sha1 '24f4cbe8554790b7abcc3c037172ab2efecae1af'
def install
standard_install
end
def caveats
s = standard_instructions "AWS_CLOUDWATCH_HOME"
s += <<-EOS.undent
export SERVICE_HOME="$AWS_CLOUDWATCH_HOME"
EOS
return s
end
end