blob: 0f7630e2a8e9539a2c88b1ee29f209f8059872b8 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | require 'formula'
class T1utils < Formula
  homepage 'http://www.lcdf.org/type/'
  url 'http://www.lcdf.org/type/t1utils-1.38.tar.gz'
  sha1 'a97ba119a2e376db49d9d4911472c0033e2fece8'
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
  test do
    system "#{bin}/t1mac", "--version"
  end
end
 |