2013-09-13 21:50:19 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Htmlcleaner < Formula
|
|
|
|
homepage 'http://htmlcleaner.sourceforge.net/index.php'
|
2014-02-27 14:19:55 +00:00
|
|
|
url 'https://downloads.sourceforge.net/project/htmlcleaner/htmlcleaner/htmlcleaner%20v2.7/htmlcleaner-2.7.zip'
|
2013-12-17 07:25:20 +00:00
|
|
|
sha1 'dc9032cbce6dfa2abd2eae060aa146a0d6af9d9f'
|
2013-09-13 21:50:19 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install "htmlcleaner-#{version}.jar"
|
|
|
|
bin.write_jar_script libexec/"htmlcleaner-#{version}.jar", "htmlcleaner"
|
|
|
|
end
|
2014-02-04 21:37:20 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
path = testpath/"index.html"
|
|
|
|
path.write "<html>"
|
|
|
|
|
|
|
|
output = `#{bin}/htmlcleaner src=#{path}`
|
|
|
|
assert output.include?("</html>")
|
|
|
|
assert_equal 0, $?.exitstatus
|
|
|
|
end
|
2013-09-13 21:50:19 +00:00
|
|
|
end
|