451b6a5e95
Closes #7553. Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
17 lines
487 B
Ruby
17 lines
487 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.3.tar.gz"
|
|
sha256 "8146f44e6b44add60ce29469ce04000baa0066d632373f7c8ad21cf906d06cc3"
|
|
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
|