From ba4c6994459bf29f4f2f3bfbf284c24f7300d70a Mon Sep 17 00:00:00 2001 From: webbrain-one <295484252+webbrain-one@users.noreply.github.com> Date: Mon, 27 Jul 2026 09:42:13 +0300 Subject: [PATCH] Add Homebrew formula --- Formula/pdf-sign.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Formula/pdf-sign.rb diff --git a/Formula/pdf-sign.rb b/Formula/pdf-sign.rb new file mode 100644 index 0000000..28850ab --- /dev/null +++ b/Formula/pdf-sign.rb @@ -0,0 +1,15 @@ +class PdfSign < Formula + desc "Secure PDF signing with OpenPGP and Sigstore" + homepage "https://github.com/0x77dev/pdf-sign" + url "https://github.com/0x77dev/pdf-sign/releases/download/v0.2.0/pdf-sign-macos-arm64" + sha256 "sha256-hash-placeholder" # To be updated on release + license "GPL-3.0-only" + + def install + bin.install "pdf-sign" + end + + test do + test.shell_script { "pdf-sign --help" } + end +end