# -*- 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                aspnetcore-runtime-devel
set main_version    10.0.0
# See patch version in https://dotnet.microsoft.com/download/dotnet/10.0
set patch_version   rc.2.25502.107
version             ${main_version}-${patch_version}
revision            0
categories          dotnet
license             MIT
maintainers         @BjarneDMat {@judaew judaew} openmaintainer

description         ASP.NET Core is a cross-platform .NET framework for building modern \
                    cloud-based web applications on Windows, Mac, or Linux.

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            aspnetcore-runtime-${version}-osx-x64
        checksums           rmd160  19efa5f33de814237f89f9147659f89d3abec916 \
                            sha256  4cc7cb5cd5404d30090287a8af62b7d7f597c633c354fd175780acfd6154d8e0 \
                            size    48481573
    }
    arm64 {
        distname            aspnetcore-runtime-${version}-osx-arm64
        checksums           rmd160  25c917e8fbbd4a55c9ac7128754bb9fb694ad6e8 \
                            sha256  aa11c137c230ae14b48268d98e0c530e614e8060eade18416e5c35ebbc601548 \
                            size    45575887
    }
    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/aspnetcore/Runtime/${version}/

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

use_configure       no

depends_run         port:dotnet-cli \
                    port:dotnet-runtime-devel

build {}

destroot {
    set dotnet_home ${prefix}/share/dotnet
    set runtime_dir /shared/Microsoft.AspNetCore.App
    xinstall -d ${destroot}${dotnet_home}${runtime_dir}

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

livecheck.version   [join [lrange [split ${patch_version} .] 0 0] .]
livecheck.type      regex
livecheck.url       https://dotnet.microsoft.com/download/dotnet/10.0
livecheck.regex     "ASP.NET Core Runtime ${main_version}-(\\d)"
