-
Notifications
You must be signed in to change notification settings - Fork 14
Description
It seems like winget comes installed by default on Windows 11. It would be nice if rakubrew could be installed via winget since that might allow automatically handling the init stuff the user otherwise has to manually figure out. For example right now I can install rakubrew (capable of compiling) from a bare windows install using just winget by doing:
1) Install Parallels desktop
2) Open Parallels and choose install Windows 11
3) Open PowerShell terminal
4) Run `winget install -e --id Git.Git`
5) Run `winget install -e --id StrawberryPerl.StrawberryPerl`
6) Run `winget install --id Microsoft.VisualStudio.2022.BuildTools --override "--add Microsoft.VisualStudio.Workload.VCTools --includeRecommended --passive"`
7) Open Developer PowerShell for VS 2022 (use this as your command prompt from now on)
8) Run `. {iwr -useb https://rakubrew.org/install-on-powershell.ps1 } | iex`
9) ? (see https://github.com/Raku/App-Rakubrew/issues/81)
I'm not sure how winget dependencies work but that could be even shorter if winget rakubrew was capable of automatically installing (or telling the user ot install) git, perl, and vs build tools.
(Ultimately I'm trying to put together the steps a raku developer on apple silicon needs to follow to build and test rakudo on Windows, and so far the most difficult part is surprisingly getting the rakubrew command available after it is installed)