forked from Homebrew/homebrew-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaws-elasticache.rb
39 lines (32 loc) · 1.14 KB
/
aws-elasticache.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
class AwsElasticache < Formula
desc "Client for Amazon ElastiCache web service"
homepage "https://aws.amazon.com/developertools/2310261897259567"
url "https://elasticache-downloads.s3.amazonaws.com/AmazonElastiCacheCli-2014-09-30-1.12.000.zip"
version "1.12.000"
sha256 "0aee0849a78c8129ed16e99706dde34972c02ed1846e70b76a1e21a133d9648f"
bottle :unneeded
depends_on "ec2-api-tools"
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
def caveats
<<~EOS
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
end
test do
system "#{bin}/elasticache-version"
end
end