aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMichael Hale2010-07-08 13:35:10 -0400
committerAdam Vandenberg2010-07-16 08:54:14 -0700
commitecd7c304bb759c22f54f20bb5e3797ae6de3c01c (patch)
tree12b87d81069b5a7784a562a0804a6b9ee892d597 /Library/Formula
parentb30ec4adaed505fb2bcba47a558a2e01fc6db593 (diff)
downloadhomebrew-ecd7c304bb759c22f54f20bb5e3797ae6de3c01c.tar.bz2
amazon web services autoscaling formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/auto-scaling.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/auto-scaling.rb b/Library/Formula/auto-scaling.rb
new file mode 100644
index 000000000..318414db0
--- /dev/null
+++ b/Library/Formula/auto-scaling.rb
@@ -0,0 +1,20 @@
+require 'formula'
+
+# Require ec2-api-tools to get the base class
+require "#{File.dirname __FILE__}/ec2-api-tools.rb"
+
+class AutoScaling <AmazonWebServicesFormula
+ version '1.0.9.0'
+ homepage 'http://developer.amazonwebservices.com/connect/entry.jspa?externalID=2535&categoryID=251'
+ url 'http://ec2-downloads.s3.amazonaws.com/AutoScaling-2009-05-15.zip'
+ md5 'a8410272127432d01d5f1a90d976b822'
+ aka 'aws-as'
+
+ def install
+ standard_install
+ end
+
+ def caveats
+ standard_instructions "AWS_AUTO_SCALING_HOME"
+ end
+end \ No newline at end of file