homebrew-core/Formula/ec2-api-tools.rb
sowawa 33c599eb6a Fix the bad value of EC2_HOME in the standard_instructions
Change EC2_HOME's value from 'export EC2_HOME="/usr/local/Cellar/ec2-api-tools/1.6.12.0/"'
to 'export EC2_HOME="/usr/local/Cellar/ec2-api-tools/1.6.12.0/libexec"'

Avoide the wrong value of EC_HOME caused by
024208466bfb4ffb479d48709caecc6a1e85ba4d

Closes Homebrew/homebrew#25918.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-04 20:27:34 -08:00

15 lines
353 B
Ruby

require 'formula'
class Ec2ApiTools < AmazonWebServicesFormula
homepage 'http://aws.amazon.com/developertools/351'
url 'http://ec2-downloads.s3.amazonaws.com/ec2-api-tools-1.6.12.0.zip'
sha1 'eb0732df59a2ad2c1ad3fa5839e846b69afad697'
def install
standard_install
end
def caveats
standard_instructions "EC2_HOME", prefix
end
end