e7299bb5c4
Closes Homebrew/homebrew#33015.
31 lines
889 B
Ruby
31 lines
889 B
Ruby
require "formula"
|
|
|
|
class Ttfautohint < Formula
|
|
homepage "http://www.freetype.org/ttfautohint"
|
|
url "https://downloads.sourceforge.net/project/freetype/ttfautohint/1.2/ttfautohint-1.2.tar.gz"
|
|
sha1 "d4c4c570139da9667744e086da57ee5a21872630"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "560b377ed563e03032b8ca14a6e23cf051c9e855" => :mavericks
|
|
sha1 "c2958652ba83dc5d2a34baebd2041b9b6832eb98" => :mountain_lion
|
|
sha1 "747d9dec24fffae7b4c2d5a76fe69527cc5b837d" => :lion
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "freetype"
|
|
depends_on "libpng"
|
|
depends_on "harfbuzz"
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}",
|
|
"--with-qt=no"
|
|
system "make install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/ttfautohint", "-V"
|
|
end
|
|
end
|