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

class T1utils < Formula
  url 'http://www.lcdf.org/type/t1utils-1.37.tar.gz'
  homepage 'http://www.lcdf.org/type/'
  sha256 '42bdce77aaf12b33ca6d193e01a2d2c0012f755435a6d25921f94733ee61cec3'

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

  def test
    system "#{bin}/t1mac --version | head -1"
  end
end