diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 1d7b2ebbed..72dd30f91a 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -309,7 +309,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n | [`SRB2`](SRB2/) | Sonic Robo Blast 2 | 2.2.13 | https://www.srb2.org/ | | [`ssmtp`](ssmtp/) | sSMTP is a simple MTA | 2.64-11 | https://wiki.debian.org/sSMTP | | [`stb`](stb/) | stb single-file public domain libraries for C/C++ | af1a5bc | https://github.com/nothings/stb | -| [`stockfish`](stockfish/) | Stockfish: A free and strong UCI chess engine | 16 | https://github.com/official-stockfish/Stockfish | +| [`stockfish`](stockfish/) | Stockfish: A free and strong UCI chess engine | 16.1 | https://github.com/official-stockfish/Stockfish | | [`stpuzzles`](stpuzzles/) | Simon Tatham's Portable Puzzle Collection | | https://www.chiark.greenend.org.uk/~sgtatham/puzzles/ | | [`stress-ng`](stress-ng/) | stress-ng | 0.16.04 | 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/stockfish/package.sh b/Ports/stockfish/package.sh index be39b2139a..623727d736 100755 --- a/Ports/stockfish/package.sh +++ b/Ports/stockfish/package.sh @@ -1,9 +1,9 @@ #!/usr/bin/env -S bash ../.port_include.sh port='stockfish' -version='16' +version='16.1' useconfigure='false' files=( - "https://github.com/official-stockfish/Stockfish/archive/refs/tags/sf_${version}.tar.gz#a1600ebdaf4e324ba3e10cec2e0c9a810dc64c6f0db5cc955b2fd5e1eefa1cc6" + "https://github.com/official-stockfish/Stockfish/archive/refs/tags/sf_${version}.tar.gz#a5f94793b5d4155310397ba89e9c4266570ef0f24cd47de41a9103556f811b82" ) workdir="Stockfish-sf_${version}/src/" makeopts+=(ARCH="${SERENITY_ARCH}" SUPPORTED_ARCH=true COMPCXX="${CXX}")