Update package version to 3.51.1

This commit is contained in:
2025-12-05 22:50:13 +02:00
parent c652d49b74
commit f189690660
2 changed files with 6 additions and 7 deletions
+2 -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.0 version: 3.51.1
revision: 1 revision: 1
url: https://www.sqlite.org/ url: https://www.sqlite.org/
license: Public Domain license: Public Domain
@@ -12,3 +12,4 @@ depends:
- zlib - zlib
make_depends: make_depends:
- tcl - tcl
- wget
+4 -6
View File
@@ -2,14 +2,12 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
DOWNLOAD="https://sqlite.org/2024/sqlite-autoconf-3450100.tar.gz"
FILENAME="${DOWNLOAD##*/}"
# The prepare function is executed in the root of the temp directory # The prepare function is executed in the root of the temp directory
# This function is used for downloading files and putting them into the correct location # This function is used for putting downloaded files to the correct location or applying patches
prepare() { prepare() {
wget "$DOWNLOAD" local version=$(printf "%d%02d%02d00\n" ${BPM_PKG_VERSION//./ })
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" wget https://sqlite.org/2025/sqlite-autoconf-${version}.tar.gz
tar -xvf sqlite-autoconf-${version}.tar.gz --strip-components=1 -C "$BPM_SOURCE"
} }
# The build function is executed in the source directory # The build function is executed in the source directory