Skip to content
Closed
Changes from all commits
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
9 changes: 4 additions & 5 deletions Formula/sqlb-sqlite.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
class SqlbSqlite < Formula
desc "Command-line interface for SQLite"
homepage "https://sqlite.org/index.html"
url "https://www.sqlite.org/2025/sqlite-autoconf-3480000.tar.gz"
version "3.48.0"
sha256 "ac992f7fca3989de7ed1fe99c16363f848794c8c32a158dafd4eb927a2e02fd5"
url "https://sqlite.org/2026/sqlite-autoconf-3510200.tar.gz"
version "3.51.2"
sha256 "fbd89f866b1403bb66a143065440089dd76100f2238314d92274a082d4f2b7bb"
license "blessing"

env :std
Expand All @@ -30,7 +30,7 @@ def install
# Match the required version of the DB Browser for SQLite app.
ENV["MACOSX_DEPLOYMENT_TARGET"] = "10.13"
ENV.append "CPPFLAGS", "-mmacosx-version-min=10.13"
ENV.append "LDFLAGS", "-mmacosx-version-min=10.13"
ENV.append "LDFLAGS", "-mmacosx-version-min=10.13 -arch x86_64 -arch arm64"

ENV.append "CFLAGS", "-arch x86_64 -arch arm64"

Expand Down Expand Up @@ -60,7 +60,6 @@ def install
args = %W[
--prefix=#{prefix}
--disable-dependency-tracking
--enable-dynamic-extensions
--disable-readline
--disable-editline
]
Expand Down