class Groovysdk < Formula desc "SDK for Groovy: a Java-based scripting language" homepage "http://www.groovy-lang.org" url "https://dl.bintray.com/groovy/maven/apache-groovy-sdk-2.5.6.zip" sha256 "e6301b7f577add1039fcd6f82b3a172744abf6f332b75e1f2ff3d768c6d35184" bottle :unneeded # Groovy 2.5 requires JDK8+ to build and JDK7 is the minimum version of the JRE that we support. depends_on :java => "1.7+" conflicts_with "groovy", :because => "both install the same binaries" def install ENV["GROOVY_HOME"] = libexec # We don't need Windows' files. rm_f Dir["bin/*.bat"] prefix.install_metafiles bin.install Dir["bin/*"] libexec.install "conf", "lib", "src", "doc" bin.env_script_all_files(libexec+"bin", :GROOVY_HOME => ENV["GROOVY_HOME"]) end test do system "#{bin}/grape", "install", "org.activiti", "activiti-engine", "5.16.4" end end