diff options
| author | Amitava | 2010-09-28 16:14:26 +0600 |
|---|---|---|
| committer | Adam Vandenberg | 2010-10-30 18:25:02 -0700 |
| commit | 3e6e52010d543dd00898e71bd07b447781ead477 (patch) | |
| tree | fcdb37bac9b151e8ca8ea35575eda4e24f20c24a /Library/Formula | |
| parent | 2e6ac7fe8b22beeaaa395e25df5b13c9ec5d15bb (diff) | |
| download | homebrew-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/Formula')
| -rw-r--r-- | Library/Formula/plotutils.rb | 13 |
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 |
