homebrew-cask/Casks/m/miniconda.rb

48 lines
1.4 KiB
Ruby

cask "miniconda" do
arch arm: "arm64", intel: "x86_64"
version "py311_23.11.0-2"
sha256 arm: "5694c382e6056d62ed874f22692224c4f53bca22e8135b6f069111e081be07aa",
intel: "2b7f9e46308c28c26dd83abad3e72121ef63916eaf17b63723b5a1f728dc3032"
url "https://repo.anaconda.com/miniconda/Miniconda3-#{version}-MacOSX-#{arch}.sh",
verified: "repo.anaconda.com/miniconda/"
name "Miniconda"
desc "Minimal installer for conda"
homepage "https://docs.conda.io/en/latest/miniconda.html"
livecheck do
url "https://repo.anaconda.com/miniconda/"
strategy do |content|
sha256 = content.scan(/>Miniconda3-latest-MacOSX-#{arch}\.sh<.{,99}>(\w{64})</im).first.first
content.scan(/>Miniconda3-(py\d+_[\d.-]+)-MacOSX-#{arch}\.sh<.{,99}>#{sha256}</im).first.first
end
end
auto_updates true
conflicts_with cask: "miniforge"
container type: :naked
installer script: {
executable: "Miniconda3-#{version}-MacOSX-#{arch}.sh",
args: ["-b", "-p", "#{caskroom_path}/base"],
}
binary "#{caskroom_path}/base/condabin/conda"
uninstall delete: "#{caskroom_path}/base"
zap trash: [
"~/.conda",
"~/.condarc",
"~/.continuum",
]
caveats <<~EOS
Please run the following to setup your shell:
conda init "$(basename "${SHELL}")"
Alternatively, manually add the following to your shell init:
eval "$(conda "shell.$(basename "${SHELL}")" hook)"
EOS
end