# -*- 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-devel set main_version 9.0.0 # See patch version in https://dotnet.microsoft.com/en-us/download/dotnet/9.0 set patch_version 4.24266.19 version ${main_version}-preview.${patch_version} revision 0 categories dotnet license MIT maintainers {@tsabirgaliev gmail.com:tair.sabirgaliev} \ {@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 ddf38fd940709b0dc4dc17e08ae212cd73de2455 \ sha256 104080ab9e66376d9f66c940bbe0832b220e50c8a7134c775740896e57d08bf1 \ size 31976935 } arm64 { distname dotnet-runtime-${version}-osx-arm64 checksums rmd160 1b275426afab081e72a42a7ab7377d4110f00985 \ sha256 b2804dee539138904309dc0987a4d55efd53794a5a5f93e6e7871eb2608ef9f0 \ size 30162972 } 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://dotnetcli.azureedge.net/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.version [join [lrange [split ${patch_version} .] 0 0] .] livecheck.type regex livecheck.url https://dotnet.microsoft.com/en-us/download/dotnet/9.0 livecheck.regex ".NET Runtime ${main_version}-preview.(\\d)"