2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-02 17:54:00 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ilmbase < Formula
|
2009-10-02 17:54:00 +00:00
|
|
|
homepage 'http://www.openexr.com/'
|
2013-01-28 04:52:32 +00:00
|
|
|
url 'http://download.savannah.gnu.org/releases/openexr/ilmbase-1.0.2.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'fe6a910a90cde80137153e25e175e2b211beda36'
|
2009-10-02 17:54:00 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
def install
|
2011-08-29 18:36:02 +00:00
|
|
|
# prevent 'cc1plus: error: unrecognized command line option "-Wno-long-double"'
|
|
|
|
inreplace 'configure', 'CXXFLAGS="$CXXFLAGS -Wno-long-double"', ''
|
|
|
|
|
2013-01-28 04:52:32 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2009-10-02 17:54:00 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|