diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 5a82f0cc08..45846b741c 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -27,7 +27,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n | [`cfunge`](cfunge/) | cfunge | 2bc4fb2 | https://github.com/VorpalBlade/cfunge/ | | [`chester`](chester/) | Chester Gameboy Emulator | | https://github.com/veikkos/chester | | [`citron`](citron/) | Citron Programming Language | 0.0.9.3 | https://github.com/alimpfard/citron | -| [`cmake`](cmake/) | CMake | 3.23.1 | https://cmake.org/ | +| [`cmake`](cmake/) | CMake | 3.23.2 | https://cmake.org/ | | [`cmatrix`](cmatrix/) | cmatrix | 3112b12 | https://github.com/abishekvashok/cmatrix | | [`composer`](composer/) | Composer | 2.3.4 | https://getcomposer.org/ | | [`coreutils`](coreutils/) | GNU core utilities | 9.1 | https://www.gnu.org/software/coreutils/ | diff --git a/Ports/cmake/package.sh b/Ports/cmake/package.sh index d6e3f8a812..95cc54d46b 100755 --- a/Ports/cmake/package.sh +++ b/Ports/cmake/package.sh @@ -1,8 +1,8 @@ #!/usr/bin/env -S bash ../.port_include.sh port=cmake -version=3.23.1 +version=3.23.2 useconfigure=true -files="https://github.com/Kitware/CMake/releases/download/v$version/cmake-$version.tar.gz cmake-$version.tar.gz 33fd10a8ec687a4d0d5b42473f10459bb92b3ae7def2b745dc10b192760869f3" +files="https://github.com/Kitware/CMake/releases/download/v$version/cmake-$version.tar.gz cmake-$version.tar.gz f316b40053466f9a416adf981efda41b160ca859e97f6a484b447ea299ff26aa" auth_type=sha256 depends=("bash" "make" "sed" "ncurses" "libuv" "openssl") configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt" "-DCMAKE_USE_SYSTEM_LIBRARY_LIBUV=1" "-DCMAKE_USE_OPENSSL=ON" "-GNinja")