homebrew-core/Formula/paket.rb
Igor Kapkov 34eed33ae4 paket 5.194.4
Closes #35653.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2019-01-03 10:03:41 +01:00

46 lines
1.1 KiB
Ruby

class Paket < Formula
desc "Dependency manager for .NET with support for NuGet and Git repositories"
homepage "https://fsprojects.github.io/Paket/"
url "https://github.com/fsprojects/Paket/releases/download/5.194.4/paket.exe"
sha256 "26d72b270cdf47dab33f981a08f65d230a5fd35f6eb3718d21afc9a641902600"
bottle :unneeded
depends_on "mono"
def install
libexec.install "paket.exe"
(bin/"paket").write <<~EOS
#!/bin/bash
mono #{libexec}/paket.exe "$@"
EOS
end
test do
test_package_id = "Paket.Test"
test_package_version = "1.2.3"
touch testpath/"paket.dependencies"
touch testpath/"testfile.txt"
system bin/"paket", "install"
assert_predicate testpath/"paket.lock", :exist?
(testpath/"paket.template").write <<~EOS
type file
id #{test_package_id}
version #{test_package_version}
authors Test package author
description
Description of this test package
files
testfile.txt ==> lib
EOS
system bin/"paket", "pack", "output", testpath
assert_predicate testpath/"#{test_package_id}.#{test_package_version}.nupkg", :exist?
end
end