66 lines
2.2 KiB
Ruby
66 lines
2.2 KiB
Ruby
class GribApi < Formula
|
|
homepage "https://software.ecmwf.int/wiki/display/GRIB/Home"
|
|
url "https://software.ecmwf.int/wiki/download/attachments/3473437/grib_api-1.13.0.tar.gz"
|
|
sha256 "9e665640155f4e7bbbc0de6efaf1600c245b9c4d1251cf73601db4cb94138525"
|
|
|
|
bottle do
|
|
sha256 "0e6ff4f678547a71ad16bb6c74691f871253a6bc30037d2317ef0cf43d032609" => :yosemite
|
|
sha256 "2580b860aa015b305dff87179aa430d38f07b0f85ff6a473a672a5689585f45e" => :mavericks
|
|
sha256 "6ad54cd7f2aefd2ab771695d035e799ff2f0af85085d230aa9c2a8418bb40a72" => :mountain_lion
|
|
end
|
|
|
|
depends_on :fortran
|
|
depends_on "cmake" => :build
|
|
depends_on "jasper" => :recommended
|
|
depends_on "openjpeg" => :optional
|
|
|
|
# Fixes build errors in Lion
|
|
# https://software.ecmwf.int/wiki/plugins/viewsource/viewpagesrc.action?pageId=12648475
|
|
patch :DATA
|
|
|
|
def install
|
|
mkdir "build" do
|
|
system "cmake", "..", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
grib_samples_path = shell_output("#{bin}/grib_info -t").strip
|
|
system "#{bin}/grib_ls", "#{grib_samples_path}/GRIB1.tmpl"
|
|
system "#{bin}/grib_ls", "#{grib_samples_path}/GRIB2.tmpl"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/configure b/configure
|
|
index 0a88b28..9dafe46 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -7006,7 +7006,7 @@ $as_echo_n "checking for $compiler option to produce PIC... " >&6; }
|
|
darwin* | rhapsody*)
|
|
# PIC is the default on this platform
|
|
# Common symbols not allowed in MH_DYLIB files
|
|
- lt_prog_compiler_pic='-fno-common'
|
|
+ #lt_prog_compiler_pic='-fno-common'
|
|
;;
|
|
|
|
hpux*)
|
|
@@ -12186,7 +12186,7 @@ $as_echo_n "checking for $compiler option to produce PIC... " >&6; }
|
|
darwin* | rhapsody*)
|
|
# PIC is the default on this platform
|
|
# Common symbols not allowed in MH_DYLIB files
|
|
- lt_prog_compiler_pic_F77='-fno-common'
|
|
+ #lt_prog_compiler_pic_F77='-fno-common'
|
|
;;
|
|
|
|
hpux*)
|
|
@@ -15214,7 +15214,7 @@ $as_echo_n "checking for $compiler option to produce PIC... " >&6; }
|
|
darwin* | rhapsody*)
|
|
# PIC is the default on this platform
|
|
# Common symbols not allowed in MH_DYLIB files
|
|
- lt_prog_compiler_pic_FC='-fno-common'
|
|
+ #lt_prog_compiler_pic_FC='-fno-common'
|
|
;;
|
|
|
|
hpux*)
|