homebrew-core/Formula/paket.rb
2017-09-22 16:45:08 -07:00

46 lines
1.2 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.100.2/paket.exe"
sha256 "858f50b01884100e1ed66f4de18435f81f09d92c837d215b69a1fb679084dbcf"
bottle :unneeded
depends_on "mono" => :recommended
def install
libexec.install "paket.exe"
(bin/"paket").write <<-EOS.undent
#!/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 (testpath/"paket.lock").exist?
(testpath/"paket.template").write <<-EOS.undent
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 (testpath/"#{test_package_id}.#{test_package_version}.nupkg").exist?
end
end