blob: 00727d866b9518dc2dc96286a8c2ecfbc239776c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
require "formula"
class Ttfautohint < Formula
homepage "http://www.freetype.org/ttfautohint"
url "https://downloads.sourceforge.net/project/freetype/ttfautohint/1.00/ttfautohint-1.00.tar.gz"
sha1 "41010e67e7b42151386c12717e25b0a89ef9f99b"
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
|