f2b3bccf37
Closes Homebrew/homebrew#18464. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
17 lines
550 B
Ruby
17 lines
550 B
Ruby
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.1.zip'
|
|
sha1 '71ace4b3277063aa071219847ab4a8313def3a41'
|
|
|
|
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
|