homebrew-core/Formula/closure-compiler.rb
oncletom bb67adee4e closure-compiler 20120917
Closes Homebrew/homebrew#15640.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-24 08:50:56 -07:00

22 lines
555 B
Ruby

require 'formula'
class ClosureCompiler < Formula
homepage 'http://code.google.com/p/closure-compiler/'
# Use an SVN download to get the externals as well
url 'svn+http://closure-compiler.googlecode.com/svn/trunk/', :revision => '2180'
version '20120917'
head 'svn+http://closure-compiler.googlecode.com/svn/trunk/'
def install
system "ant", "clean"
system "ant"
libexec.install Dir['*']
(bin/'closure-compiler').write <<-EOS.undent
#!/bin/bash
java -jar "#{libexec}/build/compiler.jar" "$@"
EOS
end
end