diff options
| author | jtimberman | 2010-03-28 21:31:01 -0600 |
|---|---|---|
| committer | Adam Vandenberg | 2010-05-19 21:38:01 -0700 |
| commit | bdb7258fef3ad7cbcbdb6c5436c67d27942f9a20 (patch) | |
| tree | 66ea678e476ca955909d61445555afc48b359ed0 /Library/Formula | |
| parent | 49c2526c51dc24c2f226594047be43e95869862b (diff) | |
| download | homebrew-bdb7258fef3ad7cbcbdb6c5436c67d27942f9a20.tar.bz2 | |
add ec2-ami-tools
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
* Use AWS base class
* Use alternate HOME variable
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/ec2-ami-tools.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/ec2-ami-tools.rb b/Library/Formula/ec2-ami-tools.rb new file mode 100644 index 000000000..1ca9c7b30 --- /dev/null +++ b/Library/Formula/ec2-ami-tools.rb @@ -0,0 +1,18 @@ +require 'formula' + +# Require ec2-api-tools to get the base class +require "#{File.dirname __FILE__}/ec2-api-tools.rb" + +class Ec2AmiTools <AmazonWebServicesFormula + homepage 'http://developer.amazonwebservices.com/connect/entry.jspa?externalID=368' + url 'http://s3.amazonaws.com/ec2-downloads/ec2-ami-tools-1.3-45758.zip' + md5 'b3fd0dd779277ba40f0f234bfa309135' + + def install + standard_install + end + + def caveats + standard_instructions "EC2_AMITOOL_HOME" + end +end |
