homebrew-core/Formula/plplot.rb
Brett Koonce cc25781274 plplot 5.9.11
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-16 16:58:54 +00:00

24 lines
635 B
Ruby

require 'formula'
class Plplot < Formula
homepage 'http://plplot.sourceforge.net'
url 'http://downloads.sourceforge.net/project/plplot/plplot/5.9.11%20Source/plplot-5.9.11.tar.gz'
sha1 'cfe7e8085ca054d484b24598636d4a5dcbf357c6'
depends_on 'cmake' => :build
depends_on 'pkg-config' => :build
depends_on 'pango'
option 'with-java'
def install
args = std_cmake_args
args << '-DPLD_wxwidgets=OFF' << '-DENABLE_wxwidgets=OFF'
args << '-DENABLE_java=OFF' unless build.with? 'java'
mkdir "plplot-build" do
system "cmake", "..", *args
system "make"
system "make install"
end
end
end