95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
13 lines
445 B
Ruby
13 lines
445 B
Ruby
class Ekhtml < Formula
|
|
desc "Forgiving SAX-style HTML parser"
|
|
homepage "http://ekhtml.sourceforge.net/"
|
|
url "https://downloads.sourceforge.net/project/ekhtml/ekhtml/0.3.2/ekhtml-0.3.2.tar.gz"
|
|
sha256 "1ed1f0166cd56552253cd67abcfa51728ff6b88f39bab742dbf894b2974dc8d6"
|
|
|
|
def install
|
|
ENV.j1
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
end
|