2012-03-05 12:19:18 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Exempi < Formula
|
|
|
|
homepage 'http://libopenraw.freedesktop.org/wiki/Exempi'
|
2012-08-17 19:10:16 +00:00
|
|
|
url 'http://libopenraw.freedesktop.org/download/exempi-2.2.0.tar.bz2'
|
|
|
|
sha1 '8c90ee42fef86890e4850c3562f8044f9cd66cfb'
|
2012-03-05 12:19:18 +00:00
|
|
|
|
|
|
|
depends_on 'boost'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}", "--with-boost=#{HOMEBREW_PREFIX}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|