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

class Exiv2 <Formula
  url 'http://www.exiv2.org/exiv2-0.19.tar.gz'
  homepage 'http://www.exiv2.org'
  md5 'f52fb75a2cb7512f1484deab76473e13'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end