exif version 0.6.19 for OS X
The formula for exif was recently updated to version 0.6.19.
To install exif on your Mac, open your Terminal application and run the following commands;
brew update brew install exif
The updated formula is as follows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
require 'formula' class Exif < Formula url 'http://downloads.sourceforge.net/project/libexif/exif/0.6.19/exif-0.6.19.tar.bz2' homepage 'http://libexif.sourceforge.net/' md5 '75f0dd6f9f2d128261721c0896e0b324' depends_on 'pkg-config' => :build depends_on 'popt' depends_on 'libexif' depends_on 'gettext' def install system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" system "make install" end end
This package, exif, depends on;
pkg-config
popt
libexif
gettext
See which packages depend on exif.













