60 lines
2.3 KiB
Ruby
60 lines
2.3 KiB
Ruby
class JsonFortran < Formula
|
|
desc "Fortran 2008 JSON API"
|
|
homepage "https://github.com/jacobwilliams/json-fortran"
|
|
url "https://github.com/jacobwilliams/json-fortran/archive/5.1.0.tar.gz"
|
|
sha256 "8994956200fafeb7d3a21f892131a398fe28e09ef017bf117b92f2e0fbf69db5"
|
|
head "https://github.com/jacobwilliams/json-fortran.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "995d9ab4db5ba7a9634b919e3c4bd6e60dc1efd2384d528d6ff5985c60d2fcda" => :sierra
|
|
sha256 "6738483fbb04ec4bea770db3e9f231194bedba78e401c20111a63eacef2455ba" => :el_capitan
|
|
sha256 "65961cdc44202dc9d9325b2c2907883af723f87c38820e6c97f0c92a9a1d9f2c" => :yosemite
|
|
sha256 "1d48998ff778721ee8202c1511c48b427e561858fc7b66998ad17c7563dfdd1d" => :mavericks
|
|
end
|
|
|
|
option "with-unicode-support", "Build json-fortran to support unicode text in json objects and files"
|
|
option "without-test", "Skip running build-time tests (not recommended)"
|
|
option "without-docs", "Do not build and install FORD generated documentation for json-fortran"
|
|
|
|
deprecated_option "without-robodoc" => "without-docs"
|
|
|
|
depends_on "ford" => :build if build.with? "docs"
|
|
depends_on "cmake" => :build
|
|
depends_on :fortran
|
|
|
|
def install
|
|
mkdir "build" do
|
|
args = std_cmake_args
|
|
args << "-DUSE_GNU_INSTALL_CONVENTION:BOOL=TRUE" # Use more GNU/Homebrew-like install layout
|
|
args << "-DENABLE_UNICODE:BOOL=TRUE" if build.with? "unicode-support"
|
|
args << "-DSKIP_DOC_GEN:BOOL=TRUE" if build.without? "docs"
|
|
system "cmake", "..", *args
|
|
system "make", "check" if build.with? "test"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
ENV.fortran
|
|
(testpath/"json_test.f90").write <<-EOS.undent
|
|
program example
|
|
use json_module, RK => json_RK
|
|
use iso_fortran_env, only: stdout => output_unit
|
|
implicit none
|
|
type(json_core) :: json
|
|
type(json_value),pointer :: p, inp
|
|
call json%initialize()
|
|
call json%create_object(p,'')
|
|
call json%create_object(inp,'inputs')
|
|
call json%add(p, inp)
|
|
call json%add(inp, 't0', 0.1_RK)
|
|
call json%print(p,stdout)
|
|
call json%destroy(p)
|
|
if (json%failed()) error stop 'error'
|
|
end program example
|
|
EOS
|
|
system ENV.fc, "-ojson_test", "-ljsonfortran", "-I#{HOMEBREW_PREFIX}/include", testpath/"json_test.f90"
|
|
system "./json_test"
|
|
end
|
|
end
|