blob: 9160b1e6a81a11acd5960f2ba46881eb6da1dae4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Ec2AmiTools < AmazonWebServicesFormula
homepage 'http://aws.amazon.com/developertools/368'
url 'http://ec2-downloads.s3.amazonaws.com/ec2-ami-tools-1.5.2.zip'
sha1 '1ee8ec20717426d4f516422b63107bde1421a085'
def install
standard_install
end
def caveats
standard_instructions "EC2_AMITOOL_HOME"
end
end
|