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
|
|
|
homepage 'http://www.lcdf.org/type/'
|
2013-01-28 03:11:19 +00:00
|
|
|
url 'http://www.lcdf.org/type/t1utils-1.37.tar.gz'
|
2011-09-13 08:47:40 +00:00
|
|
|
sha256 '42bdce77aaf12b33ca6d193e01a2d2c0012f755435a6d25921f94733ee61cec3'
|
2010-01-22 05:11:26 +00:00
|
|
|
|
|
|
|
def install
|
2013-01-28 03:11:19 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2010-01-22 05:11:26 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2011-09-13 08:47:40 +00:00
|
|
|
|
2013-03-26 15:49:03 +00:00
|
|
|
test do
|
|
|
|
system "#{bin}/t1mac", "--version"
|
2011-09-13 08:47:40 +00:00
|
|
|
end
|
2010-01-22 05:11:26 +00:00
|
|
|
end
|