1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Homebrew formula. Move this file to `homebrew-tap/Formula/captchaforge.rb`
# in the `santhsecurity/homebrew-tap` repo. Operators install via:
#
# brew tap santhsecurity/tap
# brew install captchaforge
#
# Bumping a version:
# 1. Ship a new vX.Y.Z GitHub Release via .github/workflows/release.yml.
# 2. Bump `url` to the new tarball.
# 3. Bump `sha256` to the new tarball's SHA-256 (printed by the
# release workflow as an artifact).
desc
homepage
license
head , branch:
on_macos do
on_arm do
url
sha256
end
on_intel do
url
sha256
end
end
on_linux do
on_arm do
url
sha256
end
on_intel do
url
sha256
end
end
depends_on => :recommended
depends_on => :recommended
bin.install
end
test do
assert_match , shell_output(, 0)
end
end