aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-01-27 20:52:32 -0800
committerAdam Vandenberg2013-01-28 21:40:06 -0800
commitddf5df1c06965092b73a06a1258466d8c640c83e (patch)
tree9ab77faf3b416c14174b2bfd962ddf1e240605b1 /Library
parentcf1c1316fb5aaf384f191aa13d1f42a050146d09 (diff)
downloadhomebrew-ddf5df1c06965092b73a06a1258466d8c640c83e.tar.bz2
ilmbase: style nits
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ilmbase.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/Library/Formula/ilmbase.rb b/Library/Formula/ilmbase.rb
index 1043db7c5..9401d910b 100644
--- a/Library/Formula/ilmbase.rb
+++ b/Library/Formula/ilmbase.rb
@@ -1,18 +1,16 @@
require 'formula'
class Ilmbase < Formula
- url 'http://download.savannah.gnu.org/releases/openexr/ilmbase-1.0.2.tar.gz'
homepage 'http://www.openexr.com/'
+ url 'http://download.savannah.gnu.org/releases/openexr/ilmbase-1.0.2.tar.gz'
sha1 'fe6a910a90cde80137153e25e175e2b211beda36'
- # included for reference only - repository doesn't have 'configure' script
- # head 'cvs://:pserver:anonymous@cvs.sv.gnu.org:/sources/openexr:IlmBase'
-
def install
# prevent 'cc1plus: error: unrecognized command line option "-Wno-long-double"'
inreplace 'configure', 'CXXFLAGS="$CXXFLAGS -Wno-long-double"', ''
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
system "make install"
end
end