aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pyxplot.rb
diff options
context:
space:
mode:
authorGuillermo Garza2013-04-08 22:36:10 -0500
committerAdam Vandenberg2013-07-02 09:42:00 -0700
commit55830ae32a37854f0cec7ca9dfcaa3b42d2f4320 (patch)
tree2300e2cf4b8f350f1c3fb54613cd7cd56945570b /Library/Formula/pyxplot.rb
parent3615ff82fd8e087e8b8f50e2221ed4d25c9b5866 (diff)
downloadhomebrew-55830ae32a37854f0cec7ca9dfcaa3b42d2f4320.tar.bz2
pyxplot 0.9.2
Closes #19070. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/pyxplot.rb')
-rw-r--r--Library/Formula/pyxplot.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/Library/Formula/pyxplot.rb b/Library/Formula/pyxplot.rb
new file mode 100644
index 000000000..ceadd9bb3
--- /dev/null
+++ b/Library/Formula/pyxplot.rb
@@ -0,0 +1,28 @@
+require 'formula'
+
+class Pyxplot < Formula
+ homepage 'http://pyxplot.org.uk/'
+ url 'http://pyxplot.org.uk/src/pyxplot_0.9.2.tar.gz'
+ sha1 '5f09399bd00a4ae94a07ac186cf0e8e7761de625'
+
+ depends_on :x11
+ depends_on :tex
+ depends_on 'fftw'
+ depends_on 'cfitsio' => :recommended
+ depends_on 'gv' => :recommended
+ depends_on 'wget' => :recommended
+ depends_on 'ghostscript' => 'with-x11'
+ depends_on 'gsl'
+ depends_on 'imagemagick'
+ depends_on 'libpng'
+ depends_on 'readline'
+
+ def install
+ # changes install directory to Cellar, per instructions
+ inreplace "Makefile.skel" do |s|
+ s.change_make_var! 'USRDIR', prefix
+ end
+ system "./configure"
+ system "make install"
+ end
+end