homebrew-core/Formula/ht.rb
Jonathan Schleifer fc66ae709c ht 2.0.19
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-02-29 19:35:14 -08:00

16 lines
413 B
Ruby

require 'formula'
class Ht < Formula
url 'http://downloads.sourceforge.net/project/hte/ht-source/ht-2.0.19.tar.bz2'
homepage 'http://hte.sf.net/'
sha1 '08cc1d82b74ea646e308e7b9629b03b5b79ca419'
depends_on 'lzo'
def install
system "chmod +x ./install-sh"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end