juliaup 1.5.28 (new formula)

Closes #93401.

Signed-off-by: Sean Molenaar <1484494+SMillerDev@users.noreply.github.com>
Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
master
Carlo Cabrera 2022-01-19 18:14:03 +08:00 committed by BrewTestBot
parent e791f8f21d
commit 599471bbb5
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
1 changed files with 19 additions and 0 deletions

19
Formula/juliaup.rb Normal file
View File

@ -0,0 +1,19 @@
class Juliaup < Formula
desc "Julia installer and version multiplexer"
homepage "https://github.com/JuliaLang/juliaup"
url "https://github.com/JuliaLang/juliaup/archive/v1.5.28.tar.gz"
sha256 "2707c631de43a774a6307da1652f9a5f386980f2afe00dd08cfc9b8d800bb76c"
license "MIT"
head "https://github.com/JuliaLang/juliaup.git", branch: "master"
depends_on "rust" => :build
def install
system "cargo", "install", *std_cargo_args
end
test do
expected = "Default Channel Version Update"
assert_equal expected, shell_output("#{bin}/juliaup status").lines.first.strip
end
end