41d533f42b
Closes #6329. 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.2.tar.gz"
|
|
sha256 "7d25cee6d08b2c27d9578e6ec8c51cfa172e34188cb725dddee1620b31e71086"
|
|
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
|