aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-06-01 10:56:01 -0500
committerJack Nagel2014-06-01 11:05:08 -0500
commitb24c6147456c7763f3ef535d4fb3f94f2ff398f0 (patch)
tree5aaeadb198282aa246bdeefa01c3ca938f621f34 /Library
parent8eeb84388634794215fc9e0b2a0b7ed9c94e9d7b (diff)
downloadhomebrew-b24c6147456c7763f3ef535d4fb3f94f2ff398f0.tar.bz2
harfbuzz 0.9.29
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/harfbuzz.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/Library/Formula/harfbuzz.rb b/Library/Formula/harfbuzz.rb
index 577c684f4..031b46aac 100644
--- a/Library/Formula/harfbuzz.rb
+++ b/Library/Formula/harfbuzz.rb
@@ -1,9 +1,9 @@
-require 'formula'
+require "formula"
class Harfbuzz < Formula
- homepage 'http://www.freedesktop.org/wiki/Software/HarfBuzz'
- url 'http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-0.9.28.tar.bz2'
- sha256 'a567f7c58018af0a9751e18641fd8434bfcef8307122dabe47dd652ce8bde048'
+ homepage "http://www.freedesktop.org/wiki/Software/HarfBuzz"
+ url "http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-0.9.29.tar.bz2"
+ sha256 "601cea38c6fa0cf362dd9042c66cf4db711c5f9390de4ca46d6d2fc3f64de390"
bottle do
cellar :any
@@ -12,15 +12,15 @@ class Harfbuzz < Formula
sha1 "f152cab6c0dd71ea9fa0b904c95792935cbbd76a" => :lion
end
- depends_on 'pkg-config' => :build
- depends_on 'glib'
- depends_on 'cairo'
- depends_on 'icu4c' => :recommended
- depends_on 'freetype'
+ depends_on "pkg-config" => :build
+ depends_on "glib"
+ depends_on "cairo"
+ depends_on "icu4c" => :recommended
+ depends_on "freetype"
def install
args = %W[--disable-dependency-tracking --prefix=#{prefix}]
- args << "--with-icu" if build.with? 'icu4c'
+ args << "--with-icu" if build.with? "icu4c"
system "./configure", *args
system "make install"
end