19 lines
517 B
Ruby
19 lines
517 B
Ruby
class Tccutil < Formula
|
|
desc "Utility to modify the macOS Accessibility Database (TCC.db)"
|
|
homepage "https://github.com/jacobsalmela/tccutil"
|
|
url "https://github.com/jacobsalmela/tccutil/archive/v1.2.10.tar.gz"
|
|
sha256 "8a6f9961b37322dee0f20a70b4299a23f16f3023a549147a4410e3f322dbfa22"
|
|
license "GPL-2.0-or-later"
|
|
head "https://github.com/jacobsalmela/tccutil.git"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "tccutil.py" => "tccutil"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/tccutil", "--help"
|
|
end
|
|
end
|