2012-04-16 16:53:42 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Cdo < Formula
|
|
|
|
homepage 'https://code.zmaw.de/projects/cdo'
|
2013-01-03 21:57:10 +00:00
|
|
|
url 'https://code.zmaw.de/attachments/download/4824/cdo-1.5.9.tar.gz'
|
|
|
|
sha1 '94add81a8f6e8e964ed0b12ed23014ad54764735'
|
2012-04-16 16:53:42 +00:00
|
|
|
|
2012-08-23 11:07:11 +00:00
|
|
|
option 'enable-grib2', 'Compile Fortran bindings'
|
2012-08-23 04:36:27 +00:00
|
|
|
|
2012-04-16 16:53:42 +00:00
|
|
|
depends_on 'netcdf'
|
|
|
|
depends_on 'hdf5'
|
2013-02-02 03:54:48 +00:00
|
|
|
depends_on 'grib-api' if build.include? 'enable-grib2'
|
2012-04-16 16:53:42 +00:00
|
|
|
|
|
|
|
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'
|
2012-04-16 16:53:42 +00:00
|
|
|
args << "--with-grib_api=#{HOMEBREW_PREFIX}"
|
|
|
|
args << "--with-jasper=#{HOMEBREW_PREFIX}"
|
|
|
|
end
|
|
|
|
|
|
|
|
system "./configure", *args
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/cdo", "-h"
|
2012-04-16 16:53:42 +00:00
|
|
|
end
|
|
|
|
end
|