homebrew-core/Formula/harfbuzz.rb
2016-11-02 08:47:19 -07:00

82 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.3.3.tar.bz2"
sha256 "2620987115a4122b47321610dccbcc18f7f121115fd7b88dc8a695c8b66cb3c9"
revision 1
bottle do
sha256 "5106489d10f89408693079e7f15ac3e8e4e3f9535dbc6e7c914ad8626f2e63d2" => :sierra
sha256 "26b2659499e63a33b49da5c71e5397989851886de680ef30466247a94a9d52b4" => :el_capitan
sha256 "1abe91d5b18812e6c1f4b8402716e017ce632fa97b51f2bc7cd1a359fa5badc0" => :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 "glib"
depends_on "freetype"
depends_on "gobject-introspection"
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}
--enable-introspection=yes
--with-freetype=yes
--with-glib=yes
--with-gobject=yes
--with-coretext=yes
--enable-static
]
if build.with? "icu4c"
args << "--with-icu=yes"
else
args << "--with-icu=no"
end
if build.with? "graphite2"
args << "--with-graphite2=yes"
else
args << "--with-graphite2=no"
end
if build.with? "cairo"
args << "--with-cairo=yes"
else
args << "--with-cairo=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