aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorXu Cheng2015-03-03 19:27:38 +0800
committerXu Cheng2015-03-03 21:18:01 +0800
commitff7501d5d5dcf889195909a4015f28130b2d9371 (patch)
treea070436cc7c3f1faa1572ea26ada76c36c6c14bd /Library
parent2507000b76234de0a60593f40dac7bfa2d0eef35 (diff)
downloadhomebrew-ff7501d5d5dcf889195909a4015f28130b2d9371.tar.bz2
ec2-api-tools: drop AmazonWebServicesFormula
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ec2-api-tools.rb25
1 files changed, 21 insertions, 4 deletions
diff --git a/Library/Formula/ec2-api-tools.rb b/Library/Formula/ec2-api-tools.rb
index 212487263..9f13cff2c 100644
--- a/Library/Formula/ec2-api-tools.rb
+++ b/Library/Formula/ec2-api-tools.rb
@@ -1,15 +1,32 @@
-class Ec2ApiTools < AmazonWebServicesFormula
+class Ec2ApiTools < Formula
homepage "https://aws.amazon.com/developertools/351"
url "https://ec2-downloads.s3.amazonaws.com/ec2-api-tools-1.7.3.0.zip"
sha1 "c2a77b6c3b9fe05fdf4a126d03f8cd07791aaa50"
+ depends_on :java
+
+ def install
+ env = Language::Java.java_home_env.merge(:EC2_HOME => libexec)
+ rm Dir["bin/*.cmd"] # Remove Windows versions
+ libexec.install Dir["*"]
+ Pathname.glob("#{libexec}/bin/*") do |file|
+ next if file.directory?
+ basename = file.basename
+ next if basename.to_s == "service"
+ (bin/basename).write_env_script file, env
+ end
+ end
+
def caveats
- standard_instructions "EC2_HOME"
+ <<-EOS.undent
+ Before you can use these tools you must export some variables to your $SHELL.
+ export AWS_ACCESS_KEY="<Your AWS Access ID>"
+ export AWS_SECRET_KEY="<Your AWS Secret Key>"
+ export AWS_CREDENTIAL_FILE="<Path to the credentials file>"
+ EOS
end
test do
- ENV["JAVA_HOME"] = `/usr/libexec/java_home`.chomp
- ENV["EC2_HOME"] = libexec
assert_match version.to_s, shell_output("#{bin}/ec2-version")
end
end