homebrew-core/Formula/rds-command-line-tools.rb

25 lines
704 B
Ruby

require 'formula'
class RdsCommandLineTools < AmazonWebServicesFormula
homepage 'http://developer.amazonwebservices.com/connect/entry.jspa?externalID=2928'
url 'http://s3.amazonaws.com/rds-downloads/RDSCli-1.3.003.zip'
md5 '01a0751b5e0b7a8a6c0097a579739394'
def install
standard_install
end
def caveats
s = standard_instructions "AWS_RDS_HOME"
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