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

class Exempi < Formula
  homepage 'http://libopenraw.freedesktop.org/wiki/Exempi'
  url 'http://libopenraw.freedesktop.org/download/exempi-2.2.0.tar.bz2'
  sha1 '8c90ee42fef86890e4850c3562f8044f9cd66cfb'

  depends_on 'boost'

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