aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/t1utils.rb
blob: 830d5f2c8e29645fcd099ea5e48da59bc99253e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class T1utils < Formula
  url 'http://www.lcdf.org/~eddietwo/type/t1utils-1.35.tar.gz'
  homepage 'http://www.lcdf.org/~eddietwo/type/'
  md5 '20e4cd3ffe81f01eff02a5e2320d95b7'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end