2010-01-22 05:11:26 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class T1utils < Formula
|
2011-09-13 08:47:40 +00:00
|
|
|
url 'http://www.lcdf.org/type/t1utils-1.37.tar.gz'
|
|
|
|
homepage 'http://www.lcdf.org/type/'
|
|
|
|
sha256 '42bdce77aaf12b33ca6d193e01a2d2c0012f755435a6d25921f94733ee61cec3'
|
2010-01-22 05:11:26 +00:00
|
|
|
|
|
|
|
def install
|
2011-09-13 08:47:40 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
2010-01-22 05:11:26 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2011-09-13 08:47:40 +00:00
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{bin}/t1mac --version | head -1"
|
|
|
|
end
|
2010-01-22 05:11:26 +00:00
|
|
|
end
|