aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorXu Cheng2015-03-03 19:30:08 +0800
committerXu Cheng2015-03-03 21:18:01 +0800
commit13250d3560851dfe8a7a2edb9f982a7d715d43b4 (patch)
treef6024e0f0d3ea99febefb779271bac123f6387f8 /Library
parent749d81d262ebdbfa091ca66bca977124dadad967 (diff)
downloadhomebrew-13250d3560851dfe8a7a2edb9f982a7d715d43b4.tar.bz2
rds-command-line-tools: drop AmazonWebServicesFormula
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/rds-command-line-tools.rb35
1 files changed, 26 insertions, 9 deletions
diff --git a/Library/Formula/rds-command-line-tools.rb b/Library/Formula/rds-command-line-tools.rb
index 239ade36a..f2497ae6a 100644
--- a/Library/Formula/rds-command-line-tools.rb
+++ b/Library/Formula/rds-command-line-tools.rb
@@ -1,20 +1,37 @@
-require 'formula'
+class RdsCommandLineTools < Formula
+ homepage "https://aws.amazon.com/developertools/2928"
+ url "https://s3.amazonaws.com/rds-downloads/RDSCli-1.14.001.zip"
+ sha1 "d0853f066ba1dca699a4a1d91581e11e523ec83a"
-class RdsCommandLineTools < AmazonWebServicesFormula
- homepage 'http://aws.amazon.com/developertools/2928'
- url 'https://s3.amazonaws.com/rds-downloads/RDSCli-1.14.001.zip'
- sha1 'd0853f066ba1dca699a4a1d91581e11e523ec83a'
+ depends_on :java
+
+ def install
+ env = Language::Java.java_home_env.merge(:AWS_RDS_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
- s = standard_instructions "AWS_RDS_HOME"
- s += <<-EOS.undent
+ <<-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>"
To check that your setup works properly, run the following command:
rds-describe-db-instances --headers
-
You should see a header line. If you have database instances already configured,
you will see a description line for each database instance.
EOS
- return s
+ end
+
+ test do
+ assert_match version.to_s, shell_output("#{bin}/rds-version")
end
end