diff options
| author | Pieter Agten | 2012-12-24 11:24:33 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-04 11:43:39 -0800 |
| commit | dbbfdc616d59cac5692a206f43bff252d2b6e653 (patch) | |
| tree | 9bf97c07734eeff056e78bb82217da7959621262 | |
| parent | 1707d820bc80e5e8c1628dd1cb6b07d6297d2208 (diff) | |
| download | homebrew-dbbfdc616d59cac5692a206f43bff252d2b6e653.tar.bz2 | |
plplot 5.9.9
Closes #16725.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/plplot.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/plplot.rb b/Library/Formula/plplot.rb new file mode 100644 index 000000000..decd2f47d --- /dev/null +++ b/Library/Formula/plplot.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Plplot < Formula + homepage 'http://plplot.sourceforge.net' + url 'http://sourceforge.net/projects/plplot/files/plplot/5.9.9%20Source/plplot-5.9.9.tar.gz' + sha1 '3df8fc21723e14af62fea4098e4ef019e1b52a54' + + depends_on 'cmake' => :build + depends_on 'pkg-config' => :build + depends_on 'pango' + + def install + mkdir "plplot-build" do + system "cmake", "..", *std_cmake_args + system "make" + system "make install" + end + end +end |
