aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorYousef Ourabi2013-01-09 10:08:19 -0800
committerAdam Vandenberg2013-01-09 20:18:12 -0800
commit9565e09f444b2f7b0249285489566a74b6d44920 (patch)
tree5d9cad8929bbee3de7d5d24d329e068fc25eccf7 /Library
parent7f5ae4c7f6ed5c1bad063b4a06a5c32f6e9242e2 (diff)
downloadhomebrew-9565e09f444b2f7b0249285489566a74b6d44920.tar.bz2
aws-elasticbeanstalk 2.3
Closes #16973. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/aws-elasticbeanstalk.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/aws-elasticbeanstalk.rb b/Library/Formula/aws-elasticbeanstalk.rb
new file mode 100644
index 000000000..78e9e27d5
--- /dev/null
+++ b/Library/Formula/aws-elasticbeanstalk.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class AwsElasticbeanstalk < AmazonWebServicesFormula
+ homepage 'http://aws.amazon.com/code/AWS-Elastic-Beanstalk/6752709412171743'
+ url 'https://s3.amazonaws.com/elasticbeanstalk/cli/AWS-ElasticBeanstalk-CLI-2.3.zip'
+ sha1 '7fdcdefa906b498b5a9c964b8c3d2aabcad406e6'
+
+ def install
+ # Remove versions for other platforms.
+ rm_rf Dir['eb/windows']
+ rm_rf Dir['eb/linux']
+ rm_rf Dir['AWSDevTools/Windows']
+
+ libexec.install %w{AWSDevTools api eb}
+ bin.install_symlink libexec/"eb/macosx/python2.7/eb"
+ end
+end