mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
Add Bjarne (@BjarneDMat) as a maintainer actively maintaining these ports recently. The Tair (@tsabirgaliev) has previously stated several times that he does not use .NET, and it can be removed from maintainers, for example: See https://github.com/macports/macports-ports/pull/29353#issuecomment-3301862653
102 lines
3.9 KiB
Tcl
102 lines
3.9 KiB
Tcl
# -*- 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-sdk-7
|
|
version 7.0.410
|
|
revision 0
|
|
categories dotnet devel
|
|
license MIT
|
|
maintainers {@judaew judaew} openmaintainer
|
|
|
|
description Core functionality needed to create .NET Core projects, that is \
|
|
shared between Visual Studio and CLI
|
|
|
|
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 >= 19}
|
|
supported_archs x86_64 arm64
|
|
|
|
switch ${build_arch} {
|
|
x86_64 {
|
|
set dotnet_rid osx-x64
|
|
distname dotnet-sdk-${version}-osx-x64
|
|
checksums rmd160 fe2c28bc99952599ed9753733fa378ec2c95638d \
|
|
sha256 a657347cebdef932119446dfabe0f9d992b7d96929eadfb8ad8177bbd33b632a \
|
|
size 216625166
|
|
}
|
|
arm64 {
|
|
set dotnet_rid osx-arm64
|
|
distname dotnet-sdk-${version}-osx-arm64
|
|
checksums rmd160 dcf5b48b8b0f4afefb0682b2e0da69743c523131 \
|
|
sha256 2c470a56c7e951277ad91ce53b91226c153214e172f8bf2db0e7672a3d32dfb6 \
|
|
size 211499549
|
|
}
|
|
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/Sdk/${version}/
|
|
|
|
worksrcdir ${name}-${version}
|
|
extract.mkdir yes
|
|
|
|
use_configure no
|
|
|
|
depends_run port:dotnet-cli \
|
|
port:dotnet-runtime-7 \
|
|
port:aspnetcore-runtime-7
|
|
|
|
build {}
|
|
|
|
destroot {
|
|
set dotnet_home ${prefix}/share/dotnet
|
|
set dotnet_runtime_version 7.0.20
|
|
|
|
# ASP.NET Core Targeting Pack
|
|
set aspnet_target_dir /packs/Microsoft.AspNetCore.App.Ref
|
|
set aspnet_target_version ${dotnet_runtime_version}
|
|
xinstall -d ${destroot}${dotnet_home}${aspnet_target_dir}
|
|
move ${worksrcpath}${aspnet_target_dir}/${aspnet_target_version} ${destroot}${dotnet_home}${aspnet_target_dir}
|
|
|
|
# .NET AppHost Pack
|
|
set dotnet_apphost_dir /packs/Microsoft.NETCore.App.Host.${dotnet_rid}
|
|
set dotnet_apphost_version ${dotnet_runtime_version}
|
|
xinstall -d ${destroot}${dotnet_home}${dotnet_apphost_dir}
|
|
move ${worksrcpath}${dotnet_apphost_dir}/${dotnet_apphost_version} ${destroot}${dotnet_home}${dotnet_apphost_dir}
|
|
|
|
# .NET Targeting Pack
|
|
set dotnet_target_dir /packs/Microsoft.NETCore.App.Ref
|
|
set dotnet_target_version ${dotnet_runtime_version}
|
|
xinstall -d ${destroot}${dotnet_home}${dotnet_target_dir}
|
|
move ${worksrcpath}${dotnet_target_dir}/${dotnet_target_version} ${destroot}${dotnet_home}${dotnet_target_dir}
|
|
|
|
# SDK
|
|
xinstall -d ${destroot}${dotnet_home}/sdk
|
|
move ${worksrcpath}/sdk/${version} ${destroot}${dotnet_home}/sdk
|
|
|
|
# SDK-Manifests
|
|
set dotnet_manifest_version 7.0.100
|
|
xinstall -d ${destroot}${dotnet_home}/sdk-manifests
|
|
move ${worksrcpath}/sdk-manifests/${dotnet_manifest_version} ${destroot}${dotnet_home}/sdk-manifests
|
|
|
|
# Templates
|
|
set dotnet_templates_version ${dotnet_runtime_version}
|
|
xinstall -d ${destroot}${dotnet_home}/templates
|
|
move ${worksrcpath}/templates/${dotnet_templates_version} ${destroot}${dotnet_home}/templates
|
|
}
|
|
|
|
livecheck.type regex
|
|
livecheck.url https://dotnet.microsoft.com/download/dotnet/7.0
|
|
livecheck.regex "SDK (\\d+(?:\\.\\d+)*)"
|