class AwsCfnTools < Formula homepage "https://aws.amazon.com/developertools/AWS-CloudFormation/2555753788650372" url "https://s3.amazonaws.com/cloudformation-cli/AWSCloudFormation-cli.zip" version "1.0.12" sha1 "1d308682effb9366b95cf2abf501c464d29ee012" depends_on "ec2-api-tools" depends_on :java def install env = Language::Java.java_home_env.merge(:AWS_CLOUDFORMATION_HOME => libexec) rm Dir["bin/*.cmd"] # Remove Windows versions libexec.install Dir["*"] Pathname.glob("#{libexec}/bin/*") do |file| next if file.directory? basename = file.basename next if basename.to_s == "service" (bin/basename).write_env_script file, env end end def caveats <<-EOS.undent Before you can use these tools you must export some variables to your $SHELL. export AWS_ACCESS_KEY="" export AWS_SECRET_KEY="" export AWS_CREDENTIAL_FILE="" EOS end test do assert_match version.to_s, shell_output("#{bin}/cfn-version") end end