diff options
| author | Clemens | 2010-03-15 13:10:07 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2010-03-15 09:18:03 -0700 |
| commit | 967ad5604e747c35aae600d88663ad82ca357fbc (patch) | |
| tree | 27bf7a4deb2276a49cf59f830b576bc571e08a2a | |
| parent | 423f8caca8456940227560d8d4202252abc83432 (diff) | |
| download | homebrew-967ad5604e747c35aae600d88663ad82ca357fbc.tar.bz2 | |
Formula for the shiny new gnuplot 4.4.0
| -rw-r--r-- | Library/Formula/gnuplot.rb | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/Library/Formula/gnuplot.rb b/Library/Formula/gnuplot.rb index e4b3a112f..d947c3dde 100644 --- a/Library/Formula/gnuplot.rb +++ b/Library/Formula/gnuplot.rb @@ -1,14 +1,19 @@ require 'formula' class Gnuplot <Formula - @url='http://downloads.sourceforge.net/project/gnuplot/gnuplot/4.2.6/gnuplot-4.2.6.tar.gz' - @homepage='http://www.gnuplot.info/' - @md5='c10468d74030e8bed0fd6865a45cf1fd' - + url 'http://downloads.sourceforge.net/project/gnuplot/gnuplot/4.4.0/gnuplot-4.4.0.tar.gz' + homepage 'www.gnuplot.info' + md5 'e708665bd512153ad5c35252fe499059' + depends_on 'readline' + depends_on 'gd' def install - system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--with-readline=#{prefix}/lib" + ENV.x11 + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}", + "--with-readline=#{prefix}", + "--disable-wxwidgets" system "make install" end end |
