79 lines
3.3 KiB
Ruby
79 lines
3.3 KiB
Ruby
class Liquidctl < Formula
|
|
include Language::Python::Virtualenv
|
|
|
|
desc "Cross-platform tool and drivers for liquid coolers and other devices"
|
|
homepage "https://github.com/liquidctl/liquidctl"
|
|
url "https://files.pythonhosted.org/packages/af/ef/9b7f0296108ec0a778e867e996bb6014d9d12005c452b9cd1c97d1cc266a/liquidctl-1.10.0.tar.gz"
|
|
sha256 "f9dc1dacaf1d3a44b80000baac490b44c5fa7443159bd8d2ef4dbb1af49cc7ba"
|
|
license "GPL-3.0-or-later"
|
|
head "https://github.com/liquidctl/liquidctl.git", branch: "main"
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_monterey: "c727c41715ec483e496655ca96bcfb828fd2444ba96441944a7f6aa3129cb945"
|
|
sha256 cellar: :any, arm64_big_sur: "e2341a6a27f04dc48904ec26d7d61c6a99501b9ec87569be407be32400aff5e0"
|
|
sha256 cellar: :any, monterey: "940108bde2118a7945c3056c6fd0932f31cb8eac0501056f95440815461bbd14"
|
|
sha256 cellar: :any, big_sur: "2666ebf8a4cce47f9cfa541c2142783f33cb82d168f6678cdafeb03091a919d0"
|
|
sha256 cellar: :any, catalina: "c6a4c904ff3ca78ef90ea34e88eacc70d6827fa6c3068fa55fda9d49ba974742"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "2b1359753511c5d428b93658e30a3013ae7586d8fd5f608d9def5cfb1fb21516"
|
|
end
|
|
|
|
depends_on "hidapi"
|
|
depends_on "libusb"
|
|
depends_on "python@3.10"
|
|
|
|
on_linux do
|
|
depends_on "i2c-tools"
|
|
end
|
|
|
|
resource "colorlog" do
|
|
url "https://files.pythonhosted.org/packages/8e/8f/1537ebed273d43edd3bb21f1e5861549b7cfcb1d47523d7277cab988cec2/colorlog-6.6.0.tar.gz"
|
|
sha256 "344f73204009e4c83c5b6beb00b3c45dc70fcdae3c80db919e0a4171d006fde8"
|
|
end
|
|
|
|
resource "docopt" do
|
|
url "https://files.pythonhosted.org/packages/a2/55/8f8cab2afd404cf578136ef2cc5dfb50baa1761b68c9da1fb1e4eed343c9/docopt-0.6.2.tar.gz"
|
|
sha256 "49b3a825280bd66b3aa83585ef59c4a8c82f2c8a522dbe754a8bc8d08c85c491"
|
|
end
|
|
|
|
resource "hidapi" do
|
|
url "https://files.pythonhosted.org/packages/ef/72/54273f701c737ae5f42d9c0adf641912d20eb955c75433f1093fa509bcc7/hidapi-0.12.0.post2.tar.gz"
|
|
sha256 "8ebb2117be8b27af5c780936030148e1971b6b7fda06e0581ff0bfb15e94ed76"
|
|
end
|
|
|
|
resource "pyusb" do
|
|
url "https://files.pythonhosted.org/packages/d9/6e/433a5614132576289b8643fe598dd5d51b16e130fd591564be952e15bb45/pyusb-1.2.1.tar.gz"
|
|
sha256 "a4cc7404a203144754164b8b40994e2849fde1cfff06b08492f12fff9d9de7b9"
|
|
end
|
|
|
|
def install
|
|
# customize liquidctl --version
|
|
ENV["DIST_NAME"] = "homebrew"
|
|
ENV["DIST_PACKAGE"] = "liquidctl #{version}"
|
|
|
|
venv = virtualenv_create(libexec, "python3")
|
|
|
|
resource("hidapi").stage do
|
|
inreplace "setup.py" do |s|
|
|
s.gsub! "/usr/include/libusb-1.0", "#{Formula["libusb"].opt_include}/libusb-1.0"
|
|
s.gsub! "/usr/include/hidapi", "#{Formula["hidapi"].opt_include}/hidapi"
|
|
end
|
|
system libexec/"bin/python3", *Language::Python.setup_install_args(libexec), "--with-system-hidapi"
|
|
end
|
|
|
|
venv.pip_install resources.reject { |r| r.name == "hidapi" }
|
|
venv.pip_install_and_link buildpath
|
|
|
|
man_page = buildpath/"liquidctl.8"
|
|
# setting the is_macos register to 1 adjusts the man page for macOS
|
|
inreplace man_page, ".nr is_macos 0", ".nr is_macos 1" if OS.mac?
|
|
man.mkpath
|
|
man8.install man_page
|
|
|
|
(lib/"udev/rules.d").install Dir["extra/linux/*.rules"] if OS.linux?
|
|
end
|
|
|
|
test do
|
|
shell_output "#{bin}/liquidctl list --verbose --debug"
|
|
end
|
|
end
|