37 lines
1.1 KiB
Ruby
37 lines
1.1 KiB
Ruby
class ClosureCompiler < Formula
|
|
desc "JavaScript optimizing compiler"
|
|
homepage "https://developers.google.com/closure/compiler"
|
|
url "https://search.maven.org/remotecontent?filepath=com/google/javascript/closure-compiler/v20221102/closure-compiler-v20221102.jar"
|
|
sha256 "c5a5409add86572c11541ee7ea6a8aaac6257c40234591277eca5ff5cd5096e7"
|
|
license "Apache-2.0"
|
|
|
|
livecheck do
|
|
url "https://search.maven.org/remotecontent?filepath=com/google/javascript/closure-compiler/"
|
|
regex(/href=.*?v?(\d{8})/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "5acad85cf895de13fba66bbb188a7280ae006eb7b9662915c048131c9f1869ab"
|
|
end
|
|
|
|
depends_on "openjdk"
|
|
|
|
def install
|
|
libexec.install Dir["*"]
|
|
bin.write_jar_script libexec/"closure-compiler-v#{version}.jar", "closure-compiler"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.js").write <<~EOS
|
|
(function(){
|
|
var t = true;
|
|
return t;
|
|
})();
|
|
EOS
|
|
system bin/"closure-compiler",
|
|
"--js", testpath/"test.js",
|
|
"--js_output_file", testpath/"out.js"
|
|
assert_equal (testpath/"out.js").read.chomp, "(function(){return!0})();"
|
|
end
|
|
end
|