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
parent
e791f8f21d
commit
599471bbb5
|
@ -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
|
Loading…
Reference in New Issue