Skip to content

Instantly share code, notes, and snippets.

@rochoa
Created May 30, 2014 14:14
Show Gist options
  • Save rochoa/78d3c03e7fb4ac240ea5 to your computer and use it in GitHub Desktop.
Save rochoa/78d3c03e7fb4ac240ea5 to your computer and use it in GitHub Desktop.
Apache Ant Homebrew Formula with hardcoded URL
require 'formula'
class Ant < Formula
homepage 'http://ant.apache.org/'
url 'http://www.us.apache.org/dist/ant/binaries/apache-ant-1.9.4-bin.tar.gz'
sha1 '6c41481e8201f6b3f7e216146b95bb6de70208bb'
bottle do
cellar :any
sha1 "56eee6f32ab55854b1ccbaa3e106129517e94f7f" => :mavericks
sha1 "f09cd5546459a6172a60ed010444dde9cc94bac1" => :mountain_lion
sha1 "5e90ad64f1bd68024f4fec659a6734629f349ea1" => :lion
end
keg_only :provided_by_osx if MacOS.version < :mavericks
def install
rm Dir['bin/*.{bat,cmd,dll,exe}']
libexec.install Dir['*']
bin.install_symlink Dir["#{libexec}/bin/*"]
end
test do
(testpath/'build.xml').write <<-EOS.undent
<project name="HomebrewTest" basedir=".">
<property name="src" location="src"/>
<property name="build" location="build"/>
<target name="init">
<mkdir dir="${build}"/>
</target>
<target name="compile" depends="init">
<javac srcdir="${src}" destdir="${build}"/>
</target>
</project>
EOS
(testpath/'src/main/java/org/homebrew/AntTest.java').write <<-EOS.undent
package org.homebrew;
public class AntTest {
public static void main(String[] args) {
System.out.println("Testing Ant with Homebrew!");
}
}
EOS
system "#{bin}/ant", "compile"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment