bump sqlite to 3.40.1
This commit is contained in:
parent
398c6dae03
commit
70b33ad8d3
|
@ -1,5 +1,5 @@
|
||||||
packageName = "sqlite3_abi"
|
packageName = "sqlite3_abi"
|
||||||
version = "3.34.0"
|
version = "3.40.1"
|
||||||
author = "Status Research & Development GmbH"
|
author = "Status Research & Development GmbH"
|
||||||
description = "A wrapper for SQLite"
|
description = "A wrapper for SQLite"
|
||||||
license = "Apache License 2.0 or MIT"
|
license = "Apache License 2.0 or MIT"
|
||||||
|
|
38514
sqlite3_abi/sqlite3.c
38514
sqlite3_abi/sqlite3.c
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
MAJOR="${1:-3}"
|
MAJOR="${1:-3}"
|
||||||
MINOR="${2:-34}"
|
MINOR="${2:-40}"
|
||||||
PATCH="${3:-0}"
|
PATCH="${3:-1}"
|
||||||
|
|
||||||
VER_INT="$(printf "%d%02d%02d00" "$MAJOR" "$MINOR" "$PATCH")"
|
VER_INT="$(printf "%d%02d%02d00" "$MAJOR" "$MINOR" "$PATCH")"
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ VER_INT="$(printf "%d%02d%02d00" "$MAJOR" "$MINOR" "$PATCH")"
|
||||||
cd sqlite3_abi
|
cd sqlite3_abi
|
||||||
|
|
||||||
ZIP="sqlite-amalgamation-$VER_INT.zip"
|
ZIP="sqlite-amalgamation-$VER_INT.zip"
|
||||||
[ -f "$ZIP" ] || wget https://www.sqlite.org/2020/$ZIP
|
[ -f "$ZIP" ] || wget https://www.sqlite.org/2022/$ZIP
|
||||||
|
|
||||||
unzip -jo $ZIP "sqlite-amalgamation-$VER_INT/sqlite3.c" "sqlite-amalgamation-$VER_INT/sqlite3.h"
|
unzip -jo $ZIP "sqlite-amalgamation-$VER_INT/sqlite3.c" "sqlite-amalgamation-$VER_INT/sqlite3.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue