diff options
author | EWouters <6179932+EWouters@users.noreply.github.com> | 2022-06-03 21:08:36 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-08 11:40:31 +0100 |
commit | 6f4a903be64b7d0fd4d9e69e7a186e1ef38a0f2c (patch) | |
tree | bfc2dc62c142f17761dd935e35b8576ac51b5c70 /Ports | |
parent | 7e3a952158663e0e929889b6960c84f2e8908448 (diff) | |
download | serenity-6f4a903be64b7d0fd4d9e69e7a186e1ef38a0f2c.zip |
Ports/sqlite: Update sqlite to version 3380500
Diffstat (limited to 'Ports')
-rw-r--r-- | Ports/AvailablePorts.md | 2 | ||||
-rwxr-xr-x | Ports/sqlite/package.sh | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 4b9d746843..b3e6206c0c 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -213,7 +213,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n | [`sl`](sl/) | Steam Locomotive (SL) | | https://github.com/mtoyoda/sl | | [`soltys`](soltys/) | Soltys | 1.0 | https://www.scummvm.org/games/#games-soltys | | [`sparsehash`](sparsehash/) | Google's C++ associative containers | 2.0.4 | https://github.com/sparsehash/sparsehash | -| [`sqlite`](sqlite/) | SQLite | 3380200 | https://www.sqlite.org/ | +| [`sqlite`](sqlite/) | SQLite | 3380500 | https://www.sqlite.org/ | | [`stpuzzles`](stpuzzles/) | Simon Tatham's Portable Puzzle Collection | | https://www.chiark.greenend.org.uk/~sgtatham/puzzles/ | | [`stress-ng`](stress-ng/) | stress-ng | 0.13.12 | https://github.com/ColinIanKing/stress-ng | | [`Super-Mario`](Super-Mario/) | Super-Mario Clone | | https://github.com/Bennyhwanggggg/Super-Mario-Clone-Cpp | diff --git a/Ports/sqlite/package.sh b/Ports/sqlite/package.sh index d18c1c4ce6..8e3f3c506b 100755 --- a/Ports/sqlite/package.sh +++ b/Ports/sqlite/package.sh @@ -1,8 +1,8 @@ #!/usr/bin/env -S bash ../.port_include.sh -port=sqlite -useconfigure="true" -use_fresh_config_sub="true" -version="3380200" -files="https://www.sqlite.org/2022/sqlite-autoconf-${version}.tar.gz sqlite-autoconf-${version}.tar.gz e7974aa1430bad690a5e9f79a6ee5c8492ada8269dc675875ad0fb747d7cada4" -auth_type=sha256 +port='sqlite' +version='3380500' +files="https://www.sqlite.org/2022/sqlite-autoconf-${version}.tar.gz sqlite-autoconf-${version}.tar.gz 5af07de982ba658fd91a03170c945f99c971f6955bc79df3266544373e39869c" +auth_type='sha256' +useconfigure='true' +use_fresh_config_sub='true' workdir="sqlite-autoconf-${version}" |