homebrew-core/Formula/libexif.rb
Brett Koonce 8fd1858284 libexif 0.6.21
exif dependency

Closes Homebrew/homebrew#13966.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-05 20:53:43 -07:00

17 lines
435 B
Ruby

require 'formula'
class Libexif < Formula
homepage 'http://libexif.sourceforge.net/'
url 'http://sourceforge.net/projects/libexif/files/libexif/0.6.21/libexif-0.6.21.tar.gz'
sha1 '4106f02eb5f075da4594769b04c87f59e9f3b931'
fails_with :llvm do
build 2334
cause "segfault with llvm"
end
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end