blob: ec762be9580a227aeac080043e3c3b036f5b9636 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class AwsElasticache < AmazonWebServicesFormula
homepage 'http://aws.amazon.com/developertools/2310261897259567'
url 'https://s3.amazonaws.com/elasticache-downloads/AmazonElastiCacheCli-2012-08-01-1.7.000.zip'
version '1.7.000'
sha1 '5a46ab1e769b32f5de16f7b8d080865dd81750f9'
depends_on 'ec2-api-tools'
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
standard_instructions "AWS_ELASTICACHE_HOME", libexec
end
end
|