Update package version to 3.51.2

This commit is contained in:
2026-01-10 16:14:03 +02:00
parent f189690660
commit 7eeacb4cdb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
name: sqlite name: sqlite
description: C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine description: C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine
version: 3.51.1 version: 3.51.2
revision: 1 revision: 1
url: https://www.sqlite.org/ url: https://www.sqlite.org/
license: Public Domain license: Public Domain
+1 -1
View File
@@ -6,7 +6,7 @@
# This function is used for putting downloaded files to the correct location or applying patches # This function is used for putting downloaded files to the correct location or applying patches
prepare() { prepare() {
local version=$(printf "%d%02d%02d00\n" ${BPM_PKG_VERSION//./ }) local version=$(printf "%d%02d%02d00\n" ${BPM_PKG_VERSION//./ })
wget https://sqlite.org/2025/sqlite-autoconf-${version}.tar.gz wget https://sqlite.org/2026/sqlite-autoconf-${version}.tar.gz
tar -xvf sqlite-autoconf-${version}.tar.gz --strip-components=1 -C "$BPM_SOURCE" tar -xvf sqlite-autoconf-${version}.tar.gz --strip-components=1 -C "$BPM_SOURCE"
} }