homebrew-core/Formula/rds-command-line-tools.rb
Beau Hartshorne fb00398908 rds-command-line-tools: use versioned download
Closes Homebrew/homebrew#17190.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-19 12:04:07 -08:00

27 lines
850 B
Ruby

require 'formula'
class RdsCommandLineTools < AmazonWebServicesFormula
homepage 'http://aws.amazon.com/developertools/2928'
url 'https://s3.amazonaws.com/rds-downloads/RDSCli-1.10.003.zip'
sha1 '668cd776e88f76084164811cb4cab3e6373009dc'
def install
rm Dir['bin/*.cmd'] # Remove Windows command files
libexec.install "bin", "lib"
bin.install_symlink Dir["#{libexec}/bin/*"]
(bin/'service').unlink # Don't keep this symlink
end
def caveats
s = standard_instructions "AWS_RDS_HOME", libexec
s += <<-EOS.undent
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
end