homebrew-core/Formula/closure-compiler.rb
Ian Lancaster 0df512c61a closure-compiler 20130411
Closes Homebrew/homebrew#19193.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-04-14 11:31:16 -07:00

17 lines
459 B
Ruby

require 'formula'
class ClosureCompiler < Formula
homepage 'http://code.google.com/p/closure-compiler/'
url 'https://code.google.com/p/closure-compiler/', :using => :git, :tag => 'v20130411'
version '20130411'
head 'https://code.google.com/p/closure-compiler/', :using => :git
def install
system "ant", "clean"
system "ant"
libexec.install Dir['*']
bin.write_jar_script libexec/'build/compiler.jar', 'closure-compiler'
end
end