aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDave Rice2011-12-30 16:41:48 -0500
committerMisty De Meo2012-01-05 21:17:16 -0600
commitd48158a44ff1224261f52b055222f6d364619f5c (patch)
treefe4bd28b283e1b12f2230ad6f651ff17da790585 /Library/Formula
parentf0afee31929520f992313d87fa8dbb1c12d0353c (diff)
downloadhomebrew-d48158a44ff1224261f52b055222f6d364619f5c.tar.bz2
ffmbc: add libfreetype in configuration
This allows ffmbc to use the drawtext filter. Thanks to @mistydemeo] for x11 hint Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ffmbc.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/ffmbc.rb b/Library/Formula/ffmbc.rb
index 6ba20d54f..366e67f41 100644
--- a/Library/Formula/ffmbc.rb
+++ b/Library/Formula/ffmbc.rb
@@ -16,11 +16,13 @@ class Ffmbc < Formula
depends_on 'xvid' => :optional
def install
+ ENV.x11
args = ["--prefix=#{prefix}",
"--disable-debug",
"--disable-shared",
"--enable-gpl",
"--enable-nonfree",
+ "--enable-libfreetype",
"--cc=#{ENV.cc}"]
args << "--enable-libx264" if Formula.factory('x264').installed?