-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkilo.rb
More file actions
48 lines (41 loc) · 1.39 KB
/
kilo.rb
File metadata and controls
48 lines (41 loc) · 1.39 KB
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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Kilo < Formula
desc "The AI coding agent built for the terminal."
homepage "https://kilo.ai"
version "7.2.20"
depends_on "ripgrep"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/Kilo-Org/kilocode/releases/download/v7.2.20/kilo-darwin-x64.zip"
sha256 "1bfbce0439dfa59754a9f3245532bd5da24f6f91152fd8ce7c3c821689eafc04"
def install
bin.install "kilo"
end
end
if Hardware::CPU.arm?
url "https://github.com/Kilo-Org/kilocode/releases/download/v7.2.20/kilo-darwin-arm64.zip"
sha256 "ce2778e158bc634c33c6bb99e562133e5d686dd87a2561a91c96eb6dd1633cb2"
def install
bin.install "kilo"
end
end
end
on_linux do
if Hardware::CPU.intel? and Hardware::CPU.is_64_bit?
url "https://github.com/Kilo-Org/kilocode/releases/download/v7.2.20/kilo-linux-x64.tar.gz"
sha256 "71eca4603dad6f0ef5cbad299bd48f63eb8d7fda27084577f0057e6a4c693f32"
def install
bin.install "kilo"
end
end
if Hardware::CPU.arm? and Hardware::CPU.is_64_bit?
url "https://github.com/Kilo-Org/kilocode/releases/download/v7.2.20/kilo-linux-arm64.tar.gz"
sha256 "706ae5cc937b0a670ed93a6acc675fd291e57ce464fdb55033860e8f4009fa42"
def install
bin.install "kilo"
end
end
end
end