837203a691
Closes Homebrew/homebrew#14410. Signed-off-by: Max Howell <mxcl@me.com>
33 lines
893 B
Ruby
33 lines
893 B
Ruby
require 'formula'
|
|
|
|
class Cdo < Formula
|
|
homepage 'https://code.zmaw.de/projects/cdo'
|
|
url 'https://code.zmaw.de/attachments/download/3605/cdo-1.5.6.1.tar.gz'
|
|
sha1 '180517a3c234a47e5e19ae15084bb2fe2bda2d06'
|
|
|
|
option 'enable-grib2', 'Compile Fortran bindings'
|
|
|
|
depends_on 'netcdf'
|
|
depends_on 'hdf5'
|
|
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}"]
|
|
|
|
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
|