diff options
| author | David Höppner | 2009-10-02 19:56:31 +0200 |
|---|---|---|
| committer | Max Howell | 2009-10-02 20:32:40 +0100 |
| commit | 604e6f51bffc23645397cf623756f492da1583d5 (patch) | |
| tree | 26c2e78e02964b36d7a082dd2efd944d4e31f263 /Library/Formula | |
| parent | a170a81708c9cab6efa7eacaf84de86c1f92916e (diff) | |
| download | homebrew-604e6f51bffc23645397cf623756f492da1583d5.tar.bz2 | |
Openexr formula
OpenEXR is a high dynamic-range (HDR) image file format developed by
Industrial Light & Magic for use in computer imaging applications.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/openexr.rb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Library/Formula/openexr.rb b/Library/Formula/openexr.rb new file mode 100644 index 000000000..af109358a --- /dev/null +++ b/Library/Formula/openexr.rb @@ -0,0 +1,35 @@ +require 'brewkit' + +class Openexr <Formula + url 'http://download.savannah.gnu.org/releases/openexr/openexr-1.6.1.tar.gz' + homepage 'http://www.openexr.com/' + md5 '11951f164f9c872b183df75e66de145a' + + depends_on 'ilmbase' + depends_on 'pkg-config' + + def patches + DATA + end + + def install + system "./configure", "--prefix=#{prefix}", + "--disable-debug", + "--disable-dependency-tracking" + system "make install" + end +end + +__END__ +--- a/configure ++++ b/configure +@@ -21504,7 +21504,7 @@ Please re-run configure with these options: + CXXFLAGS="$CXXFLAGS -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386" + fi + +- CXXFLAGS="$CXXFLAGS -Wno-long-double" ++ CXXFLAGS="$CXXFLAGS" + ;; + esac + + |
