32 lines
875 B
TOML
32 lines
875 B
TOML
[build]
|
|
type = "autotools"
|
|
|
|
[build.flags]
|
|
configure = [
|
|
"--disable-static",
|
|
"CPPFLAGS=-D SQLITE_ENABLE_COLUMN_METADATA=1 -D SQLITE_ENABLE_UNLOCK_NOTIFY=1 -D SQLITE_ENABLE_DBSTAT_VTAB=1 -D SQLITE_SECURE_DELETE=1",
|
|
"--enable-fts4",
|
|
"--enable-fts5",
|
|
]
|
|
make_vars = "LDFLAGS.rpath=''"
|
|
|
|
[dependencies]
|
|
build = ["tcl"]
|
|
runtime = [
|
|
"glibc",
|
|
"readline",
|
|
"zlib-ng",
|
|
]
|
|
|
|
[package]
|
|
description = "software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine"
|
|
homepage = "https://sqlite.org"
|
|
license = "blessing"
|
|
name = "sqlite"
|
|
version = "3.52.0"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
sha256 = "sha512:2e0f5f4e1caa02bd947badbff171532b6368cbddbfc2091bad532c453dc3ff9f505bae663613884361b4d6eca9d4a87423538271efae1794e47fbf93b581d2fb"
|
|
url = "https://www.sqlite.org/2026/sqlite-autoconf-3520000.tar.gz"
|