homebrew-core/Formula/closure-linter.rb
2019-10-18 08:10:01 +02:00

42 lines
1.6 KiB
Ruby

class ClosureLinter < Formula
desc "Check JavaScript files for style and documentation"
homepage "https://developers.google.com/closure/utilities/"
url "https://github.com/google/closure-linter/archive/v2.3.19.tar.gz"
sha256 "cd472f560be5af80afccbe94c9d9b534f7c30085510961ad408f8a314ea5c4c2"
head "https://github.com/google/closure-linter.git"
bottle do
cellar :any_skip_relocation
rebuild 1
sha256 "7ce3ceed4df70611ac9438005ed71c06e703d145ab0c38dfe22cf9046670a782" => :catalina
sha256 "0c3cb911fb4d4597e7dc00b2cbea553a62477d9024cea8c457cfe515a8730f21" => :mojave
sha256 "d44e482bf8061224657e04f76ac54d964fc04bbcc746dd3f38cd713d587242e9" => :high_sierra
sha256 "d44e482bf8061224657e04f76ac54d964fc04bbcc746dd3f38cd713d587242e9" => :sierra
end
depends_on "python@2" # does not support Python 3
resource "python-gflags" do
url "https://files.pythonhosted.org/packages/source/p/python-gflags/python-gflags-2.0.tar.gz"
sha256 "0dff6360423f3ec08cbe3bfaf37b339461a54a21d13be0dd5d9c9999ce531078"
end
def install
ENV["PYTHONPATH"] = libexec+"lib/python2.7/site-packages"
resources.each do |r|
r.stage { system "python", *Language::Python.setup_install_args(libexec) }
end
system "python", *Language::Python.setup_install_args(libexec)
bin.install Dir[libexec/"bin/*js*"]
bin.env_script_all_files(libexec+"bin", :PYTHONPATH => ENV["PYTHONPATH"])
end
test do
(testpath/"test.js").write("var test = 1;\n")
assert_equal "1 files checked, no errors found.", shell_output("#{bin}/gjslint test.js").chomp
system "#{bin}/fixjsstyle", "test.js"
end
end