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
# Homebrew formula template for repopilot.
#
# To publish via Homebrew tap:
# 1. Create a new GitHub repo: MykytaStel/homebrew-repopilot
# 2. Copy this file to Formula/repopilot.rb in that repo
# 3. Replace each PLACEHOLDER_SHA256 with the real sha256 from the GitHub release
# (found in repopilot-checksums.txt attached to the release)
# 4. Users can then install with:
# brew tap mykytastel/repopilot
# brew install repopilot
desc
homepage
version
license
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
bin.install
end
test do
system ,
end
end