homebrew-core/Formula/json-fortran.rb
2018-06-23 23:04:37 -07:00

57 lines
2.1 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/6.5.0.tar.gz"
sha256 "132d8f4ad3fe1a927101ac533bbf0bf946e27882f62ddc72b7a44fb39cefb85b"
head "https://github.com/jacobwilliams/json-fortran.git"
bottle do
cellar :any
sha256 "426f3d78fb068381bf3fd557b0a66b0ba59be61ff039bcdee5ac5298e4a5789f" => :high_sierra
sha256 "2a86ba9a964242fb9c8681d1fcc453581fdf39a9dfb37aa29451ea237bfd1b7f" => :sierra
sha256 "fa76c50ab673f5722998fbb4208886c9b74e825762644881346b11e01a69201d" => :el_capitan
end
option "with-unicode-support", "Build json-fortran to support unicode text in json objects and files"
option "without-docs", "Do not build and install FORD generated documentation for json-fortran"
deprecated_option "without-robodoc" => "without-docs"
depends_on "cmake" => :build
depends_on "ford" => :build if build.with? "docs"
depends_on "gcc" # for gfortran
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", "install"
end
end
test do
(testpath/"json_test.f90").write <<~EOS
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 "gfortran", "-o", "test", "json_test.f90", "-I#{include}",
"-L#{lib}", "-ljsonfortran"
system "./test"
end
end