2010-10-17 00:15:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class ClosureCompiler < Formula
|
2011-07-02 18:26:42 +00:00
|
|
|
url 'http://closure-compiler.googlecode.com/files/compiler-20110615.tar.gz'
|
2010-10-17 00:15:37 +00:00
|
|
|
homepage 'http://code.google.com/p/closure-compiler/'
|
2011-07-02 18:26:42 +00:00
|
|
|
md5 '7ba597fa67b187df23413eb0ca50f4cb'
|
2010-10-17 00:15:37 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install "compiler.jar"
|
|
|
|
(bin+'closure').write <<-EOS.undent
|
|
|
|
#!/bin/bash
|
2012-02-11 20:00:40 +00:00
|
|
|
java -jar "#{libexec}/compiler.jar" "$@"
|
2010-10-17 00:15:37 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|