76 lines
2.3 KiB
Ruby
76 lines
2.3 KiB
Ruby
class Pueue < Formula
|
|
desc "Command-line tool for managing long-running shell commands"
|
|
homepage "https://github.com/Nukesor/pueue"
|
|
url "https://github.com/Nukesor/pueue/archive/v0.7.1.tar.gz"
|
|
sha256 "bb114aa443624a4ceb5bbfe498b5be6e4dd8cde32e749602afdfdc24846bc82e"
|
|
license "MIT"
|
|
head "https://github.com/Nukesor/pueue.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "031681eda88e3a16306fec612a6137d8ec34f618b7211886926ec22d8b9b1ffc" => :catalina
|
|
sha256 "3df8071cbb8b1b753c7f1d74c91f98e8de711683dc899e33f83f9697a9f8d1bc" => :mojave
|
|
sha256 "251fd9a409d76b722aa3bc3bb4d75d0a37673aaef0b290c60fea9b246326857b" => :high_sierra
|
|
end
|
|
|
|
depends_on "rust" => :build
|
|
|
|
def install
|
|
system "cargo", "install", *std_cargo_args
|
|
|
|
system "./build_completions.sh"
|
|
bash_completion.install "utils/completions/pueue.bash" => "pueue"
|
|
fish_completion.install "utils/completions/pueue.fish" => "pueue.fish"
|
|
|
|
prefix.install_metafiles
|
|
end
|
|
|
|
plist_options manual: "pueued"
|
|
|
|
def plist
|
|
<<~EOS
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/pueued</string>
|
|
<string>--verbose</string>
|
|
</array>
|
|
<key>KeepAlive</key>
|
|
<false/>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{var}</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/pueued.log</string>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/pueued.log</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
mkdir testpath/"Library/Preferences"
|
|
|
|
begin
|
|
pid = fork do
|
|
exec bin/"pueued"
|
|
end
|
|
sleep 5
|
|
cmd = "#{bin}/pueue status"
|
|
assert_match /Task list is empty.*/m, shell_output(cmd)
|
|
ensure
|
|
Process.kill("TERM", pid)
|
|
end
|
|
|
|
assert_match "Pueue daemon #{version}", shell_output("#{bin}/pueued --version")
|
|
assert_match "Pueue client #{version}", shell_output("#{bin}/pueue --version")
|
|
end
|
|
end
|