2010-02-15 22:01:29 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Exiv2 < Formula
|
2010-02-15 22:01:29 +00:00
|
|
|
homepage 'http://www.exiv2.org'
|
2013-12-15 20:46:36 +00:00
|
|
|
url 'http://www.exiv2.org/exiv2-0.24.tar.gz'
|
|
|
|
sha1 '2f19538e54f8c21c180fa96d17677b7cff7dc1bb'
|
2010-02-15 22:01:29 +00:00
|
|
|
|
2013-12-15 20:56:11 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 '2b40116bf2f81fc36df6c783923a52cc3b6bfabb' => :mavericks
|
|
|
|
sha1 'b54795033eba76504c2d4f92b784976a5cb8b555' => :mountain_lion
|
|
|
|
sha1 '57cfbff226fcb74cc152d0e70522092c0a894b05' => :lion
|
|
|
|
end
|
|
|
|
|
2013-03-25 05:56:14 +00:00
|
|
|
option :universal
|
|
|
|
|
2010-02-15 22:01:29 +00:00
|
|
|
def install
|
2013-03-25 05:56:14 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2010-05-30 18:04:34 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
2010-02-15 22:01:29 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|