diff options
| author | Adam Vandenberg | 2011-03-14 15:13:26 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-14 15:13:26 -0700 |
| commit | 8aaaae74b8ae0d2deaa8f9277b070a5c42cb105e (patch) | |
| tree | 6cdb58906528f3e8be88ec898af81efe69a37d31 /Library | |
| parent | 502ce4282c26d55215cd0a21fea7d30efd0bc7ff (diff) | |
| download | homebrew-8aaaae74b8ae0d2deaa8f9277b070a5c42cb105e.tar.bz2 | |
openiamgeio 0.9.0
* Also use system libpng
* Note that 0.9.0 and 0.8.0 may fail to compile against
boost 1.46.0.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/openimageio.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/openimageio.rb b/Library/Formula/openimageio.rb index 3e6cc19a3..b1a7fb920 100644 --- a/Library/Formula/openimageio.rb +++ b/Library/Formula/openimageio.rb @@ -1,8 +1,9 @@ require 'formula' class Openimageio < Formula - url 'http://svn.openimageio.org/oiio/branches/RB-0.8/', :using => :svn - version "0.8" + url 'https://github.com/OpenImageIO/oiio/tarball/Release-0.9.0' + md5 'b9dc646c57c2137d7a9fe8bbb91e0ae7' + version "0.9.0" homepage 'http://openimageio.org' depends_on 'cmake' => :build @@ -12,7 +13,6 @@ class Openimageio < Formula depends_on 'boost' # build plugins - depends_on 'libpng' => :optional depends_on 'libtiff' => :optional depends_on 'jpeg' => :optional depends_on 'jasper' => :optional @@ -23,7 +23,7 @@ class Openimageio < Formula depends_on 'tbb' => :optional def install - system "cmake src/ #{std_cmake_parameters} -DUSE_QT:BOOL=OFF -DEMBEDPLUGINS:BOOL=ON -DUPDATE_TYPE:STRING=svn" + system "cmake src/ #{std_cmake_parameters} -DUSE_QT:BOOL=OFF -DEMBEDPLUGINS:BOOL=ON" system "make install" end end |
