1
1
class SqlbSqlite < Formula
2
2
desc "Command-line interface for SQLite"
3
3
homepage "https://sqlite.org/index.html"
4
- url "https://www.sqlite.org/2025/sqlite-autoconf-3490000 .tar.gz"
5
- version "3.49 .0"
6
- sha256 "4d8bfa0b55e36951f6e5a9fb8c99f3b58990ab785c57b4f84f37d163a0672759 "
4
+ url "https://www.sqlite.org/2025/sqlite-autoconf-3480000 .tar.gz"
5
+ version "3.48 .0"
6
+ sha256 "ac992f7fca3989de7ed1fe99c16363f848794c8c32a158dafd4eb927a2e02fd5 "
7
7
license "blessing"
8
8
env :std
9
9
10
10
bottle do
11
11
root_url "https://nightlies.sqlitebrowser.org/homebrew_bottles"
12
12
rebuild 1
13
- sha256 cellar : :any , arm64_sonoma : "9436a0ca1e59bc451ae5dcb682947d1c009f8203443b99d5eb4882cf798ae4c2 "
13
+ sha256 cellar : :any , arm64_sonoma : "e6b03a12f5d0392595b99b1564dbbc027f4517fcc578517be2b0641985f4a9e9 "
14
14
end
15
15
16
16
livecheck do
@@ -25,13 +25,6 @@ class SqlbSqlite < Formula
25
25
26
26
depends_on arch : :arm64
27
27
28
- # Fix bugs occuring in SQLite version 3.9.0
29
- # Upstream discussion: https://sqlite.org/forum/forumpost/a179331cbb
30
- patch do
31
- url "https://raw.githubusercontent.com/sqlitebrowser/homebrew-tap/refs/heads/main/Patches/sqlb-sqlite_3.9.0_autoconf-fix.patch"
32
- sha256 "88186f292c2739ba1905d6493ec3ef0211f63760dcbade37a14d6112899ba9cf"
33
- end
34
-
35
28
def install
36
29
# Determine the minimum macOS version.
37
30
# Match the required version of the DB Browser for SQLite app.
@@ -64,15 +57,15 @@ def install
64
57
-DSQLITE_USE_URI=1
65
58
] . join ( " " )
66
59
67
- args = [
68
- "--disable-readline" ,
69
- " --disable-editline" ,
70
- " --enable-session" ,
71
- "--with -readline-cflags=-I #{ Formula [ "readline" ] . opt_include } " ,
72
- "--with-readline-ldflags=-L #{ Formula [ "readline" ] . opt_lib } -lreadline" ,
60
+ args = %W [
61
+ --prefix= #{ prefix }
62
+ --disable-dependency-tracking
63
+ --enable-dynamic-extensions
64
+ --disable -readline
65
+ --disable-editline
73
66
]
74
67
75
- system "./configure" , *args , * std_configure_args
68
+ system "./configure" , *args
76
69
system "make" , "install"
77
70
78
71
# Avoid rebuilds of dependants that hardcode this path.
0 commit comments