homebrew-core/Formula/cloud-watch.rb

24 lines
621 B
Ruby
Raw Normal View History

require 'formula'
# Require ec2-api-tools to get the base class
require "#{File.dirname __FILE__}/ec2-api-tools.rb"
2011-06-06 14:26:05 +00:00
class CloudWatch < AmazonWebServicesFormula
2011-06-07 20:45:45 +00:00
version '1.0.12.1'
homepage 'http://developer.amazonwebservices.com/connect/entry.jspa?externalID=2534&categoryID=251'
url 'http://ec2-downloads.s3.amazonaws.com/CloudWatch-2010-08-01.zip'
2011-06-07 20:45:45 +00:00
md5 '2c8fb900beab1450db334f8b09811d98'
2010-07-18 11:32:21 +00:00
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