6ee24ef9b3
Closes Homebrew/homebrew#24118. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
20 lines
523 B
Ruby
20 lines
523 B
Ruby
require 'formula'
|
|
|
|
class Ttfautohint < Formula
|
|
homepage 'http://www.freetype.org/ttfautohint'
|
|
url 'http://downloads.sourceforge.net/project/freetype/ttfautohint/0.97/ttfautohint-0.97.tar.gz'
|
|
sha1 '8e11226a9d6d2f8210c752dc97c614d5b753651a'
|
|
|
|
depends_on :freetype
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--with-qt=no"
|
|
system "make install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/ttfautohint", "-V"
|
|
end
|
|
end
|