homebrew-core/Formula/libexif.rb

18 lines
438 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libexif < Formula
homepage 'http://libexif.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/libexif/libexif/0.6.21/libexif-0.6.21.tar.gz'
sha1 '4106f02eb5f075da4594769b04c87f59e9f3b931'
fails_with :llvm do
build 2334
cause "segfault with llvm"
end
2011-03-21 21:24:22 +00:00
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end