2f78de2be1
Enough formulae in core depend on this, pull it in here. When multi-repo support lands, perhaps we could set up Homebrew-AWS.
20 lines
522 B
Ruby
20 lines
522 B
Ruby
require 'formula'
|
|
|
|
class CloudWatch < AmazonWebServicesFormula
|
|
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'
|
|
md5 '2c8fb900beab1450db334f8b09811d98'
|
|
|
|
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
|