24 lines
863 B
Plaintext
24 lines
863 B
Plaintext
# Documentation: https://docs.brew.sh/Formula-Cookbook
|
|
# https://rubydoc.brew.sh/Formula
|
|
class Loki < Formula
|
|
desc "All-in-one, batteries included LLM CLI tool"
|
|
homepage "https://github.com/Dark-Alex-17/loki"
|
|
if OS.mac? and Hardware::CPU.arm?
|
|
url "https://github.com/Dark-Alex-17/loki/releases/download/v$version/loki-aarch64-apple-darwin.tar.gz"
|
|
sha256 "$hash_mac_arm"
|
|
elsif OS.mac? and Hardware::CPU.intel?
|
|
url "https://github.com/Dark-Alex-17/loki/releases/download/v$version/loki-x86_64-apple-darwin.tar.gz"
|
|
sha256 "$hash_mac"
|
|
else
|
|
url "https://github.com/Dark-Alex-17/loki/releases/download/v$version/loki-x86_64-unknown-linux-musl.tar.gz"
|
|
sha256 "$hash_linux"
|
|
end
|
|
version "$version"
|
|
license "MIT"
|
|
|
|
def install
|
|
bin.install "loki"
|
|
ohai "You're done! Get started with \"loki --help\""
|
|
end
|
|
end
|