ab643771fb
"brew audit" will now warn about commented-out dependencies. Updated formulae that had these to either take them out or rewrite the comments around them.
29 lines
748 B
Ruby
29 lines
748 B
Ruby
require 'formula'
|
|
|
|
class Openimageio <Formula
|
|
url 'http://svn.openimageio.org/oiio/branches/RB-0.8/', :using => :svn
|
|
version "0.8"
|
|
homepage 'http://openimageio.org'
|
|
|
|
depends_on 'pkg-config'
|
|
depends_on 'cmake'
|
|
depends_on 'ilmbase'
|
|
depends_on 'openexr'
|
|
depends_on 'boost'
|
|
|
|
# build plugins
|
|
depends_on 'libpng' => :optional
|
|
depends_on 'libtiff' => :optional
|
|
depends_on 'jpeg' => :optional
|
|
depends_on 'jasper' => :optional
|
|
|
|
# Qt linking, to build iv, is not currently working.
|
|
# Would need qt and glew as deps for this.
|
|
|
|
depends_on 'tbb' => :optional
|
|
|
|
def install
|
|
system "cmake src/ #{std_cmake_parameters} -DUSE_QT:BOOL=OFF -DEMBEDPLUGINS:BOOL=ON -DUPDATE_TYPE:STRING=svn"
|
|
system "make install"
|
|
end
|
|
end
|