# -*- 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

name                dotnet-runtime-9
version             9.0.10
revision            0
categories          dotnet
license             MIT
maintainers         @BjarneDMat {@judaew judaew} openmaintainer

description         .NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.

long_description    .NET is a free, cross-platform, open source developer platform \
                    for building many different types of applications. \
                    \
                    With .NET, you can use multiple languages, editors, and libraries \
                    to build for web, mobile, desktop, games, and IoT.

homepage            https://dotnet.microsoft.com/
platforms           {darwin any} {darwin >= 21}
supported_archs     x86_64 arm64

switch ${build_arch} {
    x86_64 {
        distname            dotnet-runtime-${version}-osx-x64
        checksums           rmd160  5811152c6385d39c12e4f9501942014f442b9263 \
                            sha256  fe49ff726cbc7b113206a7e5e6856b00713ba176ef8c47bdb383c53029564b88 \
                            size    32735094
    }
    arm64 {
        distname            dotnet-runtime-${version}-osx-arm64
        checksums           rmd160  009fea301c315a51af1384d3aa443d4ca941172f \
                            sha256  635b3495d58bfa91b5d3d489e56864ed14ccea2d87b3c6312905857d35fb5eaf \
                            size    30787420
    }
    default {
        known_fail yes
        pre-fetch {
            ui_error "${subport} @ ${version} only supported for architectures ${supported_archs}"
            return -code error "Unsupported architecture: ${build_arch}"
        }
    }
}

master_sites        https://builds.dotnet.microsoft.com/dotnet/Runtime/${version}/

worksrcdir          ${name}-${version}
extract.mkdir       yes

use_configure       no

depends_run         port:dotnet-cli

build {}

destroot {
    set dotnet_home ${prefix}/share/dotnet
    set hostfxr_dir /host/fxr
    set runtime_dir /shared/Microsoft.NETCore.App
    xinstall -d ${destroot}${dotnet_home}${hostfxr_dir}
    xinstall -d ${destroot}${dotnet_home}${runtime_dir}

    move ${worksrcpath}${hostfxr_dir}/${version} ${destroot}${dotnet_home}${hostfxr_dir}
    move ${worksrcpath}${runtime_dir}/${version} ${destroot}${dotnet_home}${runtime_dir}
}

livecheck.type      regex
livecheck.url       https://dotnet.microsoft.com/download/dotnet/9.0
livecheck.regex     ".NET Runtime (\\d+(?:\\.\\d+)*)"
