diff --git a/README.md b/README.md index 5b0e0129..43f16e66 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,7 @@ The task scheduler has been meticulously crafted to conceal complexity, streamli - [Build and Install](#build-and-install) - [Build with Visual Studio](#build-with-visual-studio) - [Install with vcpkg](#install-with-vcpkg) + - [Install with MSYS2](#install-with-msys2) - [Quick Start](#quick-start) - [SVG](#svg) - [Lottie](#lottie) @@ -121,6 +122,21 @@ Install the ThorVG package. ./vcpkg install thorvg ``` +### Install with MSYS2 +You can download and install pre-packaged ThorVG using the [MSYS2](https://www.msys2.org/) package manager. + +Download and execute the MSYS2 installer on the web page above and follow the steps. When done, just launch one of the terminals in the start menu, according to the architecture and compiler you want (either 32 or 64 bits, with MSVCRT or UCR C library). Then you can install the ThorVG package : + +``` +pacman -S thorvg +``` + +To update to a newer release (and update all the packages, which is preferable), run : + +``` +pacman -Syu +``` + [Back to contents](#contents)