homebrew-core/Formula/libexif.rb

15 lines
411 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libexif < Formula
url 'http://downloads.sourceforge.net/project/libexif/libexif/0.6.20/libexif-0.6.20.tar.bz2'
homepage 'http://libexif.sourceforge.net/'
md5 '19844ce6b5d075af16f0d45de1e8a6a3'
fails_with_llvm "segfault with llvm", :build => 2334
2011-03-21 21:24:22 +00:00
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end