2015-03-03 10:28:58 +00:00
|
|
|
class AwsElasticache < Formula
|
2015-01-18 21:28:42 +00:00
|
|
|
homepage "https://aws.amazon.com/developertools/2310261897259567"
|
|
|
|
url "https://s3.amazonaws.com/elasticache-downloads/AmazonElastiCacheCli-2014-09-30-1.12.000.zip"
|
|
|
|
version "1.12.000"
|
|
|
|
sha1 "aeed292beada4aabe7d88562af0f1353556c0767"
|
2011-08-28 05:06:28 +00:00
|
|
|
|
2015-01-18 21:28:42 +00:00
|
|
|
depends_on "ec2-api-tools"
|
2015-03-03 10:28:58 +00:00
|
|
|
depends_on :java
|
|
|
|
|
|
|
|
def install
|
|
|
|
env = Language::Java.java_home_env.merge(:AWS_ELASTICACHE_HOME => libexec)
|
|
|
|
rm Dir["bin/*.cmd"] # Remove Windows versions
|
|
|
|
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
|
|
|
|
end
|
2011-08-28 05:06:28 +00:00
|
|
|
|
|
|
|
def caveats
|
2015-03-03 10:28:58 +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
|
2011-08-28 05:06:28 +00:00
|
|
|
end
|
2015-01-18 21:28:42 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/elasticache-version"
|
|
|
|
end
|
2011-08-28 05:06:28 +00:00
|
|
|
end
|