29 lines
840 B
Ruby
29 lines
840 B
Ruby
class Nuget < Formula
|
|
desc "Package manager for Microsoft development platform including .NET"
|
|
homepage "https://www.nuget.org/"
|
|
url "https://dist.nuget.org/win-x86-commandline/v5.8.1/nuget.exe" # make sure libexec.install below matches case
|
|
sha256 "3ce2f08716277ce3a7556893b0a39e5c2bf1dd6765afd54843700d4a35d7c058"
|
|
license "MIT"
|
|
|
|
livecheck do
|
|
url "https://dist.nuget.org/tools.json"
|
|
regex(%r{"url":\s*?"[^"]+/v?(\d+(?:\.\d+)+)/nuget\.exe",\s*?"stage":\s*?"ReleasedAndBlessed"}i)
|
|
end
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "mono"
|
|
|
|
def install
|
|
libexec.install "nuget.exe" => "nuget.exe"
|
|
(bin/"nuget").write <<~EOS
|
|
#!/bin/bash
|
|
mono #{libexec}/nuget.exe "$@"
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
assert_match "NuGet.Protocol.Core.v3", shell_output("#{bin}/nuget list packageid:NuGet.Protocol.Core.v3")
|
|
end
|
|
end
|