95 lines
2.6 KiB
Ruby
95 lines
2.6 KiB
Ruby
class Harfbuzz < Formula
|
|
desc "OpenType text shaping engine"
|
|
homepage "https://wiki.freedesktop.org/www/Software/HarfBuzz/"
|
|
url "https://www.freedesktop.org/software/harfbuzz/release/harfbuzz-1.4.0.tar.bz2"
|
|
sha256 "8497eca976f3c4cdee7f46ffc228d755d2f0651da7c253fa6ae99d5a61ddd1b5"
|
|
|
|
bottle do
|
|
sha256 "14398c8f6ae9c9dd705a54cb9c918d5b44d6978577f1bae11cbcd03b8df7ed45" => :sierra
|
|
sha256 "1ee7e94b423c3f06462afa1b833a03ea36f437cc82a30d50dc7480eed58a1a2d" => :el_capitan
|
|
sha256 "f9d5e01fc6c529319697fcf2af6d509d3b6c301e79e5fce7bd96f5aca85eec71" => :yosemite
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/behdad/harfbuzz.git"
|
|
|
|
depends_on "ragel" => :build
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
option :universal
|
|
option "with-cairo", "Build command-line utilities that depend on Cairo"
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "freetype" => :recommended
|
|
depends_on "glib" => :recommended
|
|
depends_on "gobject-introspection" => :recommended
|
|
depends_on "icu4c" => :recommended
|
|
depends_on "cairo" => :optional
|
|
depends_on "graphite2" => :optional
|
|
|
|
resource "ttf" do
|
|
url "https://github.com/behdad/harfbuzz/raw/fc0daafab0336b847ac14682e581a8838f36a0bf/test/shaping/fonts/sha1sum/270b89df543a7e48e206a2d830c0e10e5265c630.ttf"
|
|
sha256 "9535d35dab9e002963eef56757c46881f6b3d3b27db24eefcc80929781856c77"
|
|
end
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
--with-coretext=yes
|
|
--enable-static
|
|
]
|
|
|
|
if build.with? "cairo"
|
|
args << "--with-cairo=yes"
|
|
else
|
|
args << "--with-cairo=no"
|
|
end
|
|
|
|
if build.with? "freetype"
|
|
args << "--with-freetype=yes"
|
|
else
|
|
args << "--with-freetype=no"
|
|
end
|
|
|
|
if build.with? "glib"
|
|
args << "--with-glib=yes"
|
|
else
|
|
args << "--with-glib=no"
|
|
end
|
|
|
|
if build.with? "gobject-introspection"
|
|
args << "--with-gobject=yes" << "--enable-introspection=yes"
|
|
else
|
|
args << "--with-gobject=no" << "--enable-introspection=no"
|
|
end
|
|
|
|
if build.with? "graphite2"
|
|
args << "--with-graphite2=yes"
|
|
else
|
|
args << "--with-graphite2=no"
|
|
end
|
|
|
|
if build.with? "icu4c"
|
|
args << "--with-icu=yes"
|
|
else
|
|
args << "--with-icu=no"
|
|
end
|
|
|
|
system "./autogen.sh" if build.head?
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
resource("ttf").stage do
|
|
shape = `echo 'സ്റ്റ്' | #{bin}/hb-shape 270b89df543a7e48e206a2d830c0e10e5265c630.ttf`.chomp
|
|
assert_equal "[glyph201=0+1183|U0D4D=0+0]", shape
|
|
end
|
|
end
|
|
end
|