homebrew-core/Formula/vnu.rb
Alex Dunn b8fcb89300 vnu 20150412
Closes Homebrew/homebrew#38588.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-04-12 21:40:20 -07:00

25 lines
613 B
Ruby

class Vnu < Formula
homepage "https://validator.github.io/validator/"
url "https://github.com/validator/validator/releases/download/15.4.12/vnu.jar_15.4.12.zip"
sha256 "2ae32a816aea9a7f60f359bdace9324d1a5532da61b8fb494eefdddc85148ba9"
version "20150412"
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