aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/htmlcleaner.rb
blob: 257d6d67fcf8a79df96aa25ae44ff724d177cc14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Htmlcleaner < Formula
  homepage 'http://htmlcleaner.sourceforge.net/index.php'
  url 'http://downloads.sourceforge.net/project/htmlcleaner/htmlcleaner/htmlcleaner%20v2.6.1/htmlcleaner-2.6.1.zip'
  sha1 '4c5d2049c7048dc6632a17ec15e21ab0fcf510b9'

  def install
    libexec.install "htmlcleaner-#{version}.jar"
    bin.write_jar_script libexec/"htmlcleaner-#{version}.jar", "htmlcleaner"
  end
end