Gnuplot formula
Gnuplot is a portable command-line driven interactive data and function plotting utility.
This commit is contained in:
parent
ac781aab51
commit
b1679ccfff
1 changed files with 14 additions and 0 deletions
14
Formula/gnuplot.rb
Normal file
14
Formula/gnuplot.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
require 'brewkit'
|
||||
|
||||
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'
|
||||
|
||||
depends_on 'readline'
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--with-readline=#{prefix}/lib"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue