a9092e3f6e
Utilities for dealing with Type 1 fonts. Dependency of Lilypond. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
293 B
Ruby
12 lines
293 B
Ruby
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
|