diff options
| author | mike schueler | 2011-08-27 22:06:28 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2011-08-29 09:31:36 -0700 | 
| commit | db87311885d04371b9f2054dc410c5c92d0b26ad (patch) | |
| tree | f62612ce40e00041d175ff641913304211d2b4a3 /Library/Formula/aws-elasticache.rb | |
| parent | 3284969aa1bff4078393cd44d3dbc26c772cc6c8 (diff) | |
| download | homebrew-db87311885d04371b9f2054dc410c5c92d0b26ad.tar.bz2 | |
aws-elasticache 1.5.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/aws-elasticache.rb')
| -rw-r--r-- | Library/Formula/aws-elasticache.rb | 21 | 
1 files changed, 21 insertions, 0 deletions
| diff --git a/Library/Formula/aws-elasticache.rb b/Library/Formula/aws-elasticache.rb new file mode 100644 index 000000000..6609fb954 --- /dev/null +++ b/Library/Formula/aws-elasticache.rb @@ -0,0 +1,21 @@ +require 'formula' + +# Require ec2-api-tools to get the base class +require "#{File.dirname __FILE__}/ec2-api-tools.rb" + +class AwsElasticache < AmazonWebServicesFormula +  homepage 'http://aws.amazon.com/developertools/2310261897259567' +  url 'https://s3.amazonaws.com/elasticache-downloads/AmazonElastiCacheCli-2011-07-15-1.5.000.zip' +  version '1.5.0' +  md5 '68581c62ef0a820f12294415c60fe45f' + +  depends_on 'ec2-api-tools' + +  def install +    standard_install +  end + +  def caveats +    standard_instructions "AWS_ELASTICACHE_HOME" +  end +end | 
