60 lines
1.6 KiB
Ruby
60 lines
1.6 KiB
Ruby
class Cgns < Formula
|
|
desc "CFD General Notation System"
|
|
homepage "http://cgns.org/"
|
|
url "https://github.com/CGNS/CGNS/archive/v4.1.2.tar.gz"
|
|
sha256 "951653956f509b8a64040f1440c77f5ee0e6e2bf0a9eef1248d370f60a400050"
|
|
license "BSD-3-Clause"
|
|
head "https://github.com/CGNS/CGNS.git"
|
|
|
|
livecheck do
|
|
url :head
|
|
regex(/^v?(\d+(?:\.\d+)+)$/i)
|
|
end
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "4371c695cad1aa0bccbaaf0deccb9a8f5ddf7271dcbbddf6307b8d0bc254cec5" => :catalina
|
|
sha256 "d9904ca7c839a5d0421b99ba784e98fec047971de47efa5d3cc00725cd892e26" => :mojave
|
|
sha256 "8bfeb33c22f79c998b31fea6aafc60aecf2edf18ea754799c67c012d90555ec9" => :high_sierra
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "gcc"
|
|
depends_on "hdf5"
|
|
depends_on "szip"
|
|
|
|
uses_from_macos "zlib"
|
|
|
|
def install
|
|
args = std_cmake_args
|
|
args << "-DCGNS_ENABLE_64BIT=YES" if Hardware::CPU.is_64_bit?
|
|
args << "-DCGNS_ENABLE_FORTRAN=YES"
|
|
args << "-DCGNS_ENABLE_HDF5=YES"
|
|
|
|
mkdir "build" do
|
|
system "cmake", "..", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
# Avoid references to Homebrew shims
|
|
inreplace include/"cgnsBuild.defs", HOMEBREW_LIBRARY/"Homebrew/shims/mac/super/clang", "/usr/bin/clang"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <stdio.h>
|
|
#include "cgnslib.h"
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int filetype = CG_FILE_NONE;
|
|
if (cg_is_cgns(argv[0], &filetype) != CG_ERROR)
|
|
return 1;
|
|
return 0;
|
|
}
|
|
EOS
|
|
system Formula["hdf5"].opt_prefix/"bin/h5cc", testpath/"test.c", "-L#{opt_lib}", "-lcgns"
|
|
system "./a.out"
|
|
end
|
|
end
|