homebrew-core/Formula/exiv2.rb

16 lines
369 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Exiv2 < Formula
homepage 'http://www.exiv2.org'
url 'http://www.exiv2.org/exiv2-0.24.tar.gz'
sha1 '2f19538e54f8c21c180fa96d17677b7cff7dc1bb'
option :universal
def install
ENV.universal_binary if build.universal?
2010-05-30 18:04:34 +00:00
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end