mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
33 lines
914 B
Ruby
33 lines
914 B
Ruby
require 'package'
|
|
require 'misc_functions'
|
|
|
|
class Ollama < Package
|
|
description 'Get up and running with large language models.'
|
|
homepage 'https://ollama.com/'
|
|
version '0.12.10'
|
|
license 'MIT'
|
|
compatibility 'x86_64'
|
|
source_url "https://github.com/ollama/ollama/releases/download/v#{version}/ollama-linux-amd64.tgz"
|
|
source_sha256 '8f4bf70a9856a34ba71355745c2189a472e2691a020ebd2e242a58e4d2094722'
|
|
|
|
no_compile_needed
|
|
no_shrink
|
|
# no_strip # ./usr/local/bin/ollama: 1: ./usr/local/bin/ollama: Syntax error: redirection unexpected (expecting ")")
|
|
|
|
def self.preflight
|
|
MiscFunctions.check_free_disk_space(3435973837)
|
|
end
|
|
|
|
def self.install
|
|
FileUtils.install 'bin/ollama', "#{CREW_DEST_PREFIX}/bin/ollama", mode: 0o755
|
|
end
|
|
|
|
def self.postinstall
|
|
ExitMessage.add "\nType 'ollama' to get started.\n"
|
|
end
|
|
|
|
def self.postremove
|
|
Package.agree_to_remove("#{HOME}/.ollama")
|
|
end
|
|
end
|