homebrew-core/Formula/ht.rb
Brett Koonce 13a05f431e ht 2.0.22
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-14 13:35:52 -07:00

17 lines
488 B
Ruby

require 'formula'
class Ht < Formula
homepage 'http://hte.sf.net/'
url 'http://sourceforge.net/projects/hte/files/ht-source/ht-2.0.22.tar.bz2'
sha256 'c729d64bf7de440c7b1021d3d6657ccbdb103541b4082a58dca7c8402c773f58'
depends_on 'lzo'
def install
system "chmod +x ./install-sh"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-x11-textmode"
system "make install"
end
end