homebrew-core/Formula/paket.rb

51 lines
1.3 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/6.0.13/paket.exe"
sha256 "e6fed43a604f5c935f8fb80f6c094b5081074294dc4feec674e51828082d612e"
license "MIT"
bottle do
sha256 cellar: :any_skip_relocation, all: "b2ed3fd47707d9122f9b1dafff984a9d5c959812bda28957db57419a2628f510"
end
depends_on arch: :x86_64 # mono is not yet supported on ARM
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