diff --git a/.gitignore b/.gitignore index 759b6f1..ee6e76a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ release/ +dist/ misc/ temp/ .ssh/ @@ -12,4 +13,5 @@ temp/ *.log *.lock *.tmp +commit.sh authorized_keys diff --git a/README.md b/README.md index 43df0c8..d2b738f 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ``` # static-sqlite3 -Compile a statically linked `sqlite3` for amd64 platforms due to abcense of statically compiled `sqlite3` program for x86_64 Linux platforms on official site. +Compile a statically linked `sqlite3` for amd64 platforms due to absence of statically compiled `sqlite3` program for x86_64 Linux platforms on official site. ## Compilation Requirements Docker required (using official Linux distribution of alpine:latest) @@ -42,7 +42,7 @@ and run following command in a download directory: ``` Also, `tar.gz` and `zip` archives in release section are signed with GPG -Starting from SQLite version 3.45.3, compiled versions of releases will be represented as `XX.XX.XX_ZZ` where `XX.XX.XX` will reflect actuall SQLite versions while `ZZ` will represent version of this building tool. +Starting from SQLite version 3.45.3, compiled versions of releases will be represented as `XX.XX.XX_ZZ` where `XX.XX.XX` will reflect actual SQLite versions while `ZZ` will represent version of this building tool. ## Customization diff --git a/build_static_sqlite.sh b/build_static_sqlite.sh index 459cbb9..bfde7d4 100755 --- a/build_static_sqlite.sh +++ b/build_static_sqlite.sh @@ -1,6 +1,6 @@ #!/bin/sh -SQLITE_ZIP_URL='https://www.sqlite.org/2024/sqlite-amalgamation-3450300.zip' +SQLITE_ZIP_URL='https://sqlite.org/2024/sqlite-amalgamation-3460100.zip' SQLite_compressor='upx' # Program to use for compressing compiled sqlite # Keep it empty as "" to disable compression