djvulibre version 3.5.24 for OS X
The formula for djvulibre was recently updated to version 3.5.24.
To install djvulibre on your Mac, open your Terminal application and run the following commands;
brew update brew install djvulibre
The updated formula is as follows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
require 'formula' # Note that this formula installs neither the DjVu Spotlight importer, # nor the DjVu QuickLook plugin. class Djvulibre < Formula url 'http://downloads.sourceforge.net/project/djvu/DjVuLibre/3.5.24/djvulibre-3.5.24.tar.gz' homepage 'http://djvu.sourceforge.net/' sha1 '075d1d4a333a2fe74e4c9240d853be016e27e983' depends_on 'jpeg' depends_on 'libtiff' def install # Don't build X11 GUI apps. system "./configure", "--disable-debug", "--prefix=#{prefix}", "--enable-desktopfiles=no", "--with-x=NO", "--with-qt=NO" system "make" system "make install" end end
This package, djvulibre, depends on;
jpeg
libtiff
See which packages depend on djvulibre.












