d16ab1be53
Closes Homebrew/homebrew#10721. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
15 lines
399 B
Ruby
15 lines
399 B
Ruby
require 'formula'
|
|
|
|
class ClosureCompiler < Formula
|
|
homepage 'http://code.google.com/p/closure-compiler/'
|
|
url 'http://closure-compiler.googlecode.com/files/compiler-20120305.tar.gz'
|
|
md5 '513344df6f18bfa00b17f034cabf897d'
|
|
|
|
def install
|
|
libexec.install "compiler.jar"
|
|
(bin+'closure').write <<-EOS.undent
|
|
#!/bin/bash
|
|
java -jar "#{libexec}/compiler.jar" "$@"
|
|
EOS
|
|
end
|
|
end
|