homebrew-core/Formula/cdo.rb

34 lines
891 B
Ruby
Raw Normal View History

require 'formula'
class Cdo < Formula
homepage 'https://code.zmaw.de/projects/cdo'
url 'https://code.zmaw.de/attachments/download/4195/cdo-1.5.8.tar.gz'
sha1 '763f7175c230b6fc865ece1031a3c25887fc87ed'
option 'enable-grib2', 'Compile Fortran bindings'
2012-08-23 04:36:27 +00:00
depends_on 'netcdf'
depends_on 'hdf5'
2012-08-23 04:36:27 +00:00
depends_on 'grib-api' => :optional if build.include? 'enable-grib2'
def install
args = ["--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-netcdf=#{HOMEBREW_PREFIX}",
"--with-hdf5=#{HOMEBREW_PREFIX}",
"--with-szlib=#{HOMEBREW_PREFIX}"]
2012-08-23 04:36:27 +00:00
if build.include? 'enable-grib2'
args << "--with-grib_api=#{HOMEBREW_PREFIX}"
args << "--with-jasper=#{HOMEBREW_PREFIX}"
end
system "./configure", *args
system "make install"
end
def test
system "#{bin}/cdo", "-h"
end
end