homebrew-core/Formula/plplot.rb
Brett Koonce 0741ac8deb plplot 5.9.10
Closes Homebrew/homebrew#23406.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-10-24 07:27:38 -07:00

21 lines
552 B
Ruby

require 'formula'
class Plplot < Formula
homepage 'http://plplot.sourceforge.net'
url 'http://downloads.sourceforge.net/project/plplot/plplot/5.9.10%20Source/plplot-5.9.10.tar.gz'
sha1 '10dbdfe41d71a9f51e4396729c001ed2baea22fe'
# failing wxWidget includes on snow leopard
depends_on :macos => :lion
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