require 'formula' class Maven < Formula homepage 'http://maven.apache.org/' url 'http://www.apache.org/dyn/closer.cgi?path=maven/maven-3/3.2.3/binaries/apache-maven-3.2.3-bin.tar.gz' sha1 '1ce6641f7dcb4fd5785bedcdca2979da83f6d23f' def install # Remove windows files rm_f Dir["bin/*.bat"] # Fix the permissions on the global settings file. chmod 0644, 'conf/settings.xml' prefix.install_metafiles libexec.install Dir['*'] # Leave conf file in libexec. The mvn symlink will be resolved and the conf # file will be found relative to it bin.install_symlink Dir["#{libexec}/bin/*"] - ["#{libexec}/bin/m2.conf"] end test do (testpath/'pom.xml').write <<-EOS.undent 4.0.0 org.homebrew maven-test 1.0.0-SNAPSHOT EOS (testpath/'src/main/java/org/homebrew/MavenTest.java').write <<-EOS.undent package org.homebrew; public class MavenTest { public static void main(String[] args) { System.out.println("Testing Maven with Homebrew!"); } } EOS system "#{bin}/mvn", 'compile' end end