diff options
| author | Charlie Sharpsteen | 2012-10-30 14:43:14 -0700 |
|---|---|---|
| committer | Charlie Sharpsteen | 2012-10-30 15:22:03 -0700 |
| commit | 42a6c41f904e35f9f73c4dbe1bc717cfc381a0ee (patch) | |
| tree | 94c8ab63980b3b6fe3a737e7b527a8cba269b18c /Library | |
| parent | b43ad4b41b78b4a0fa7c9eb3c5d28052d57d3297 (diff) | |
| download | homebrew-42a6c41f904e35f9f73c4dbe1bc717cfc381a0ee.tar.bz2 | |
poppler: Add openjpeg dependency
As per the recommendation of `configure`.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/poppler.rb | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Library/Formula/poppler.rb b/Library/Formula/poppler.rb index 9826a7259..f8e3e75af 100644 --- a/Library/Formula/poppler.rb +++ b/Library/Formula/poppler.rb @@ -10,14 +10,17 @@ class Poppler < Formula url 'http://poppler.freedesktop.org/poppler-0.20.2.tar.gz' sha256 '2debc5034e0e85402957d84fb2674737658a3dbe8a3c631e1792e3f8c88ce369' + option 'with-qt4', 'Build Qt backend' + option 'with-glib', 'Build Glib backend' + depends_on 'pkg-config' => :build + + depends_on :fontconfig + depends_on 'openjpeg' + depends_on 'qt' if build.include? 'with-qt4' depends_on 'glib' if build.include? 'with-glib' depends_on 'cairo' if build.include? 'with-glib' # Needs a newer Cairo build than OS X 10.6.7 provides - depends_on :fontconfig - - option 'with-qt4', 'Build Qt backend' - option 'with-glib', 'Build Glib backend' def install if build.include? 'with-qt4' |
