Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
fontforge: fix X dep
Browse files Browse the repository at this point in the history
  • Loading branch information
jacknagel committed Jun 3, 2013
1 parent c48049f commit 2396dcf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Library/Formula/fontforge.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@ class Fontforge < Formula

head 'https://github.com/fontforge/fontforge.git'

option 'with-gif', 'Build with GIF support'
option 'with-gif', 'Build with GIF support'
option 'with-x', 'Build with X'

depends_on 'gettext'
depends_on :python => :recommended

depends_on :libpng => :recommended
depends_on 'jpeg' => :recommended
depends_on 'libtiff' => :recommended
depends_on :x11 => :recommended
depends_on :x11 if build.with? 'x'
depends_on 'giflib' if build.with? 'gif'
depends_on 'cairo' => :optional
depends_on 'pango' => :optional
Expand Down

0 comments on commit 2396dcf

Please sign in to comment.