diff options
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 |
