53 lines
1.8 KiB
Ruby
53 lines
1.8 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/8.2.0.tar.gz"
|
|
sha256 "df9986c4ecad996f3be3d6855397141e63721207fe90e1500ae0df587d46481f"
|
|
license "BSD-3-Clause"
|
|
head "https://github.com/jacobwilliams/json-fortran.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "6e241e147133a032ae3043bd3bd2276184be5e0f85bdc98f58574c402e2da187" => :big_sur
|
|
sha256 "d740f47e3053013cebd27a3cde23ac45e41adc937753a89fe851abbda217bc66" => :catalina
|
|
sha256 "e0c9b3b3de042f3a31819f2dc4ed3659ec8d0678d5e294e36ba856d3daeaaef9" => :mojave
|
|
sha256 "1ab529c7d554b79e7459c4093d33fc917a66e1976e28dfe40a0aa369b0c77d86" => :high_sierra
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "ford" => :build
|
|
depends_on "gcc" # for gfortran
|
|
|
|
def install
|
|
mkdir "build" do
|
|
system "cmake", "..", *std_cmake_args,
|
|
"-DUSE_GNU_INSTALL_CONVENTION:BOOL=TRUE",
|
|
"-DENABLE_UNICODE:BOOL=TRUE"
|
|
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
|