67 lines
2.3 KiB
Ruby
67 lines
2.3 KiB
Ruby
class GribApi < Formula
|
|
desc "Encode and decode grib messages (editions 1 and 2)"
|
|
homepage "https://software.ecmwf.int/wiki/display/GRIB/Home"
|
|
url "https://software.ecmwf.int/wiki/download/attachments/3473437/grib_api-1.13.1.tar.gz"
|
|
sha256 "aa66c4d744f3073b06792c0e6299fcae99aa2a921f8b59a9ccd9056bf26baf5f"
|
|
|
|
bottle do
|
|
sha256 "bca2414b4550d8cd07636440635fdba4673fe98a3225a7d12bf257d6115d3155" => :yosemite
|
|
sha256 "57aff6f17cc19706e4e8a65b2e920521a30923ab232b8ba7cad12019e8e68505" => :mavericks
|
|
sha256 "cf7953a2b3a265d3a656e590f50dee80f7ce337b510834bf53313b702b700547" => :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*)
|