diff options
| author | David Höppner | 2009-10-02 19:54:00 +0200 |
|---|---|---|
| committer | Max Howell | 2009-10-02 20:32:40 +0100 |
| commit | a170a81708c9cab6efa7eacaf84de86c1f92916e (patch) | |
| tree | ea5083c5c2d9e4f7ebd703c5fa5bc26811a83157 /Library | |
| parent | 07905358a972d8ce2153f08ce342ac3a7d40f3d0 (diff) | |
| download | homebrew-a170a81708c9cab6efa7eacaf84de86c1f92916e.tar.bz2 | |
Ilmbase formula
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/ilmbase.rb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Library/Formula/ilmbase.rb b/Library/Formula/ilmbase.rb new file mode 100644 index 000000000..c06e16ef9 --- /dev/null +++ b/Library/Formula/ilmbase.rb @@ -0,0 +1,30 @@ +require 'brewkit' + +class Ilmbase <Formula + url 'http://download.savannah.gnu.org/releases/openexr/ilmbase-1.0.1.tar.gz' + homepage 'http://www.openexr.com/' + md5 'f76f094e69a6079b0beb93d97e2a217e' + + 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 +@@ -21049,7 +21049,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 + + |
