aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ht.rb
blob: 32b2c5856230ca7c8612c679850077b306ea2ead (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Ht < Formula
  homepage 'http://hte.sf.net/'
  url 'https://downloads.sourceforge.net/project/hte/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