# -*- 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            2
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  eb731419ade49a65956be337ea96c7431edd5bc3 \
                    sha256  69effc7ee983fb62d4e122d9115d2c75beb1043a01f9d4a8ec14c78c673f6b19 \
                    size    179345
github.tarball_from archive

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
