48 lines
2.6 KiB
Ruby
48 lines
2.6 KiB
Ruby
class Daemonize < Formula
|
|
desc "Run a command as a UNIX daemon"
|
|
homepage "https://software.clapper.org/daemonize/"
|
|
url "https://github.com/bmc/daemonize/archive/release-1.7.8.tar.gz"
|
|
sha256 "20c4fc9925371d1ddf1b57947f8fb93e2036eb9ccc3b43a1e3678ea8471c4c60"
|
|
license "BSD-3-Clause"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_ventura: "fd11e888912a0afdfac36c26b95f4d27b7aafaa2ce3ac41c14388683f9027df0"
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "2b4a5d09904220ebd65f8fb46dc9ff521fe01fd024a80d1fbcf587ff5324e21f"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "49b53c082bc201f7dcfe760c727b7f748ce6306fcdbf656d1609384dc75e52fc"
|
|
sha256 cellar: :any_skip_relocation, ventura: "d271ade4fea6639e817bb38815fde49a53e006a5b51a60f4d0b54fb08e07337d"
|
|
sha256 cellar: :any_skip_relocation, monterey: "4c32da9480f4d9f48e28390f9201c7667dfabbb874f5acd4e7af28b04de2e748"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "a9dc01cd71295518a9477676bee344b3f3f25d5725777635c0c708d8dc7fdde0"
|
|
sha256 cellar: :any_skip_relocation, catalina: "a5c898ee425aecfb5c3d41e75da436ebbd44ad2fa343fa85b60573bd4fd8c7a7"
|
|
sha256 cellar: :any_skip_relocation, mojave: "45a895642c3be14e888b66607c2a4567408657111686437a431a730358b2feea"
|
|
sha256 cellar: :any_skip_relocation, high_sierra: "bc501e9e4ba9fd11390fa9749a7b9a38a70353edaf75499bd969c45921d06bfe"
|
|
sha256 cellar: :any_skip_relocation, sierra: "d4d5109292158ef32eb73a37b9b6a037dcae620e234be945410ea927322bb998"
|
|
sha256 cellar: :any_skip_relocation, el_capitan: "5e05991cf0462e4fe32dd70354d2520a378831d2b1c0fc2cf0b4fbca8dc85489"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "ccae89928e0e598a4b36e6077c509bb4a36020519b4aa49aa3bd58b42de2a3ce"
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
dummy_script_file = testpath/"script.sh"
|
|
output_file = testpath/"outputfile.txt"
|
|
pid_file = testpath/"pidfile.txt"
|
|
dummy_script_file.write <<~EOS
|
|
#!/bin/sh
|
|
echo "#{version}" >> "#{output_file}"
|
|
EOS
|
|
chmod 0700, dummy_script_file
|
|
system "#{sbin}/daemonize", "-p", pid_file, dummy_script_file
|
|
assert_predicate pid_file, :exist?,
|
|
"The file containing the PID of the child process was not created."
|
|
sleep(4) # sleep while waiting for the dummy script to finish
|
|
assert_predicate output_file, :exist?,
|
|
"The file which should have been created by the child process doesn't exist."
|
|
assert_match version.to_s, output_file.read
|
|
end
|
|
end
|