77 lines
2.3 KiB
Ruby
77 lines
2.3 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.8.8.tar.bz2"
|
|
sha256 "a8e5c86e4d99e1cc9865ec1b8e9b05b98e413c2a885cd11f8e9bb9502dd3e3a9"
|
|
|
|
bottle do
|
|
sha256 "35d9a6166847ff3c267c503e996332f1ceb729ed417c0a2c547761899e0e3571" => :mojave
|
|
sha256 "c5fb112f729de65d26651207e197c216ab5301a39b41f7a741b81644fb229ba8" => :high_sierra
|
|
sha256 "fb984dac19bd01b56fa79af410b3a636d2e78951c9fa9e493ad5687846b0ba44" => :sierra
|
|
sha256 "d1ebe488634cd4ecdf406dd14b93d453a24182cbcc679be31041f8656b4aa7f9" => :el_capitan
|
|
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
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gobject-introspection" => :build
|
|
depends_on "freetype" => :recommended
|
|
depends_on "graphite2" => :recommended
|
|
depends_on "icu4c" => :recommended
|
|
depends_on "cairo"
|
|
depends_on "glib"
|
|
|
|
resource "ttf" do
|
|
url "https://github.com/behdad/harfbuzz/raw/fc0daafab0336b847ac14682e581a8838f36a0bf/test/shaping/fonts/sha1sum/270b89df543a7e48e206a2d830c0e10e5265c630.ttf"
|
|
sha256 "9535d35dab9e002963eef56757c46881f6b3d3b27db24eefcc80929781856c77"
|
|
end
|
|
|
|
def install
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
--with-coretext=yes
|
|
--enable-static
|
|
--with-cairo=yes
|
|
--with-glib=yes
|
|
--with-gobject=yes
|
|
--enable-introspection=yes
|
|
]
|
|
|
|
if build.with? "freetype"
|
|
args << "--with-freetype=yes"
|
|
else
|
|
args << "--with-freetype=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
|