aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/exiv2.rb
blob: 803921c1caa5bdc7ca25e9b96c6d44ef16e139b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

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?
    system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
    system "make install"
  end
end