homebrew-core/Formula/ttfautohint.rb
Lance Hepler 6111c486e0 ttfautohint 0.92
Closes Homebrew/homebrew#11792.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-10 15:28:06 -07:00

20 lines
505 B
Ruby

require 'formula'
class Ttfautohint < Formula
homepage 'http://www.freetype.org/ttfautohint'
url 'http://download.savannah.gnu.org/releases/freetype/ttfautohint-0.92.tar.gz'
sha1 'c1d169cae2cf71ca39fe108815844574846113c5'
depends_on :freetype
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-qt=no"
system "make install"
end
def test
system "#{bin}/ttfautohint -V"
end
end