# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4

PortSystem          1.0
PortGroup           fortran 1.0

github.setup        jacobwilliams dop853 1.3.1
revision            0
categories-append   math
license             BSD
maintainers         {@barracuda156 gmail.com:vital.had} openmaintainer
description         Modern Fortran implementation of DOP853 ODE solver
long_description    This is a modern Fortran (2003/2008) implementation of Hairerʼs DOP853 ODE solver. \
                    The original Fortran 77 code has been extensively refactored, and is now object-oriented and thread-safe, \
                    with an easy-to-use class interface. DOP853 is an explicit Runge–Kutta method of order 8(5,3) \
                    due to Dormand & Prince (with stepsize control and dense output).
checksums           rmd160  96df2432d5d8275b4900d8cd65b5e6818ff4d1fc \
                    sha256  63fea0d946c73dd14ee95f6fc0f149fe02365298425b6cb2a50e0f9bfde5f1ac \
                    size    179396

post-destroot {
    set docdir ${prefix}/share/doc/${name}
    xinstall -d ${destroot}${docdir}
    xinstall -m 0644 -W ${worksrcpath} LICENSE README.md ${destroot}${docdir}
}

test.run            yes
