homebrew-core/Formula/vnu.rb
2017-06-29 03:17:30 -07:00

30 lines
726 B
Ruby

class Vnu < Formula
desc "Nu Markup Checker: command-line and server HTML validator"
homepage "https://validator.github.io/validator/"
url "https://github.com/validator/validator/releases/download/17.7.0/vnu.jar_17.7.0.zip"
sha256 "b785719aef2854d856adb64e64ce60abeb7f9523defcdc455bf4c71a29913012"
version_scheme 1
bottle :unneeded
depends_on :java => "1.8+"
def install
libexec.install "vnu.jar"
bin.write_jar_script libexec/"vnu.jar", "vnu"
end
test do
(testpath/"index.html").write <<-EOS.undent
<!DOCTYPE html>
<html>
<head>
<title>hi</title>
</head>
<body>
</body>
</html>
EOS
system bin/"vnu", testpath/"index.html"
end
end