homebrew-core/Formula/cups.rb

40 lines
1.1 KiB
Ruby

class Cups < Formula
desc "Common UNIX Printing System"
homepage "https://www.cups.org"
url "https://github.com/apple/cups/releases/download/v2.3.3/cups-2.3.3-source.tar.gz"
sha256 "261fd948bce8647b6d5cb2a1784f0c24cc52b5c4e827b71d726020bcc502f3ee"
license "Apache-2.0"
bottle do
sha256 "1bed38f7aa9ee2c76fed5393e308cf7de5dd6d443debb0455ee7739e010b0e20" => :catalina
sha256 "19ea09cef986e1c66f1736409f4e7917914100bb68525d8118e705500fbf28e0" => :mojave
sha256 "0d3328bddece686cfa54e63b61f68c68fed1b1f8553cd45ed194d8a80e56f9c9" => :high_sierra
end
keg_only :provided_by_macos
uses_from_macos "zlib"
def install
system "./configure", "--disable-debug",
"--with-components=core",
"--without-bundledir",
"--prefix=#{prefix}"
system "make", "install"
end
test do
pid = fork do
exec "#{bin}/ippeveprinter", "Homebrew Test Printer"
end
begin
sleep 2
system "#{bin}/ippfind"
ensure
Process.kill("TERM", pid)
Process.wait(pid)
end
end
end