homebrew-core/Formula/closure-compiler.rb
Kalashnikov Igor 94ff99da72 closure-compiler 20130823
Closes Homebrew/homebrew#22464.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-09-11 14:46:25 +01:00

16 lines
438 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 => 'v20130823'
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