blob: 6e120d8b98768b6b0d9777cf99bba0707f0c20cb (
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.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
|