2015-03-03 11:07:06 +00:00
|
|
|
class AwsSnsCli < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Client for Amazon Simple Notification web service"
|
2015-01-20 22:48:54 +00:00
|
|
|
homepage "https://aws.amazon.com/developertools/3688"
|
|
|
|
url "https://sns-public-resources.s3.amazonaws.com/SimpleNotificationServiceCli-2010-03-31.zip"
|
2012-08-27 17:40:53 +00:00
|
|
|
# The version in the tarball is the API version; this is the tool version
|
2015-01-20 22:48:54 +00:00
|
|
|
version "2013-09-27"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "c14adade30bf366f7d95d19d177babd33669dbd0e4b46f2c81304723776d382f"
|
2012-07-19 22:51:25 +00:00
|
|
|
|
2015-03-03 11:07:06 +00:00
|
|
|
depends_on :java
|
|
|
|
|
2012-07-19 22:51:25 +00:00
|
|
|
def install
|
2015-03-03 11:07:06 +00:00
|
|
|
env = Language::Java.java_home_env.merge(:AWS_SNS_HOME => libexec)
|
2015-01-20 22:48:54 +00:00
|
|
|
rm Dir["bin/*.cmd"] # Remove Windows versions
|
2015-03-03 11:07:06 +00:00
|
|
|
chmod 0755, Dir["bin/*"]
|
|
|
|
libexec.install Dir["*"]
|
|
|
|
Pathname.glob("#{libexec}/bin/*") do |file|
|
|
|
|
next if file.directory?
|
|
|
|
basename = file.basename
|
|
|
|
next if basename.to_s == "service"
|
|
|
|
(bin/basename).write_env_script file, env
|
|
|
|
end
|
2012-07-19 22:51:25 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats
|
2015-03-03 11:07:06 +00:00
|
|
|
<<-EOS.undent
|
|
|
|
Before you can use these tools you must export some variables to your $SHELL.
|
|
|
|
export AWS_ACCESS_KEY="<Your AWS Access ID>"
|
|
|
|
export AWS_SECRET_KEY="<Your AWS Secret Key>"
|
|
|
|
export AWS_CREDENTIAL_FILE="<Path to the credentials file>"
|
|
|
|
EOS
|
2015-01-20 22:48:54 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
assert_match /w.x.y.z/, shell_output("#{bin}/sns-version")
|
2012-07-19 22:51:25 +00:00
|
|
|
end
|
|
|
|
end
|