blob: ebbf49d38c0fe776b30a48641d646befc673c84a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class AwsSnsCli < AmazonWebServicesFormula
homepage 'http://aws.amazon.com/developertools/3688'
url 'http://sns-public-resources.s3.amazonaws.com/SimpleNotificationServiceCli-2010-03-31.zip'
sha1 'e41084d375328f502546c303bc848f9ce9d1daa4'
def install
standard_install
end
def caveats
standard_instructions "AWS_SNS_HOME"
end
end
|