2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-02 17:56:31 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Openexr < Formula
|
2009-10-02 17:56:31 +00:00
|
|
|
homepage 'http://www.openexr.com/'
|
2014-04-21 04:39:23 +00:00
|
|
|
url 'http://download.savannah.gnu.org/releases/openexr/openexr-2.1.0.tar.gz'
|
|
|
|
sha1 '4a3db5ea527856145844556e0ee349f45ed4cbc7'
|
2011-08-29 19:10:21 +00:00
|
|
|
|
2014-06-09 16:05:57 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "ea725dc6cbc2d136e76207c9d35a7be7458a3cfb" => :mavericks
|
|
|
|
sha1 "ed396fb53bd47b21972f543b7a5eb374d4f023f0" => :mountain_lion
|
|
|
|
sha1 "b22c4937ea4053246781c1469cb11b6eb9290d94" => :lion
|
|
|
|
end
|
|
|
|
|
2011-08-29 19:10:21 +00:00
|
|
|
# included for reference only - repository doesn't have 'configure' script
|
|
|
|
# head 'cvs://:pserver:anonymous@cvs.sv.gnu.org:/sources/openexr:OpenEXR'
|
2009-10-02 17:56:31 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
New formula: openimageio HEAD
OpenImageIO is a library for reading and writing images, and a bunch of related classes, utilities, and applications.
Depends on cmake, ilmbase, openexr, boost
Optionally depends on libpng, libtiff, libjpeg, jasper, qt, glew
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
* Updates to get it working; please improve if you can!
2010-04-05 12:44:13 +00:00
|
|
|
depends_on 'ilmbase'
|
2009-10-02 17:56:31 +00:00
|
|
|
|
|
|
|
def install
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2009-10-02 17:56:31 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|