blob: 6ae2a51f21f6401687382bdae5d0ebe04b559535 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Ht < Formula
url 'http://downloads.sourceforge.net/project/hte/ht-source/ht-2.0.18.tar.bz2'
homepage 'http://hte.sf.net/'
md5 '9cd5c52bb3fbae5c631875cd0de3318c'
depends_on 'lzo'
def install
system "chmod +x ./install-sh"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|