Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ollama 0.5.2 #201441

Merged
merged 2 commits into from
Dec 17, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Formula/o/ollama.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ class Ollama < Formula
desc "Create, run, and share large language models (LLMs)"
homepage "https://ollama.com/"
url "https://github.com/ollama/ollama.git",
tag: "v0.5.1",
revision: "de52b6c2f90ff220ed9469167d51e3f5d7474fa2"
tag: "v0.5.2",
revision: "60f75560a2a950e14aabe88c0a7b1223f31277ad"
license "MIT"
head "https://github.com/ollama/ollama.git", branch: "main"

Expand All @@ -28,6 +28,10 @@ class Ollama < Formula
depends_on "go" => :build

def install
# Fix to makefile path, should be checked in next release
# https://github.com/ollama/ollama/blob/89d5e2f2fd17e03fd7cd5cb2d8f7f27b82e453d7/llama/llama.go#L3
inreplace "llama/llama.go", "//go:generate make -j", "//go:generate make -C ../ -j"

# Silence tens of thousands of SDK warnings
ENV["SDKROOT"] = MacOS.sdk_path if OS.mac?

Expand Down
Loading