blob: 9ebfa1f98da23af36d4ab7cfbebf7adde1799635 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
require 'formula'
class Tth < Formula
  homepage 'http://hutchinson.belmont.ma.us/tth/'
  url 'http://hutchinson.belmont.ma.us/tth/tth-noncom/tth_C.tgz'
  sha1 'bc571e5916b979c1dd8e3377249db66ceee28318'
  version '4.05'
  def install
    system "#{ENV.cc} -o tth tth.c"
    bin.install %w(tth latex2gif ps2gif ps2png)
    man1.install 'tth.1'
  end
end
  |