diff options
| author | Lars Eggert | 2013-09-26 16:00:19 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2013-10-20 09:55:49 -0700 |
| commit | b8707947da7dbd22c43dd77655fb78f3d8f1737e (patch) | |
| tree | b34c58806cac428cc17a26df422cfcc3b403b995 /Library/Formula/xplot.rb | |
| parent | 3ad66c3dc9b52c1c33c8b01b60f119ed41595864 (diff) | |
| download | homebrew-b8707947da7dbd22c43dd77655fb78f3d8f1737e.tar.bz2 | |
xplot 0.90.7.1
Closes #22849.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/xplot.rb')
| -rw-r--r-- | Library/Formula/xplot.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/xplot.rb b/Library/Formula/xplot.rb new file mode 100644 index 000000000..44e5527d9 --- /dev/null +++ b/Library/Formula/xplot.rb @@ -0,0 +1,16 @@ +require 'formula' + +class Xplot < Formula + homepage 'http://www.xplot.org' + url 'http://www.xplot.org/xplot/xplot-0.90.7.1.tar.gz' + sha1 '164074206addaeb971d2fa65069c7c7be654efc5' + + depends_on :x11 + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + inreplace 'Makefile', 'man/man1', 'share/man/man1' + system "make install" + end +end |
