2f78de2be1
Enough formulae in core depend on this, pull it in here. When multi-repo support lands, perhaps we could set up Homebrew-AWS.
18 lines
438 B
Ruby
18 lines
438 B
Ruby
require 'formula'
|
|
|
|
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
|