aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAmitava2010-09-28 16:14:26 +0600
committerAdam Vandenberg2010-10-30 18:25:02 -0700
commit3e6e52010d543dd00898e71bd07b447781ead477 (patch)
treefcdb37bac9b151e8ca8ea35575eda4e24f20c24a /Library
parent2e6ac7fe8b22beeaaa395e25df5b13c9ec5d15bb (diff)
downloadhomebrew-3e6e52010d543dd00898e71bd07b447781ead477.tar.bz2
The plotutils Package.
A GNU package for producing 2D plots in a variety of formats, built around an enhanced libplot C/C++ function library. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/plotutils.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/plotutils.rb b/Library/Formula/plotutils.rb
new file mode 100644
index 000000000..c12173158
--- /dev/null
+++ b/Library/Formula/plotutils.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Plotutils <Formula
+ url 'ftp://mirrors.kernel.org/gnu/plotutils/plotutils-2.6.tar.gz'
+ homepage 'http://www.gnu.org/software/plotutils/'
+ md5 'c08a424bd2438c80a786a7f4b5bb6a40'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make"
+ system "make install"
+ end
+end