diff options
Diffstat (limited to 'Library/Formula/plotutils.rb')
| -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 |
