1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
Building & Installing Font Manager
==================================
Building
--------
Font Manager uses the Meson <http://mesonbuild.com> and Ninja
<https://ninja-build.org> build systems. To build Font Manager,
run the following commands from the top-level directory of the
source code repository:
meson setup --prefix=/usr --buildtype=release build
ninja -C build
See the `meson.build` file in the top-level directory for the complete
list of required dependencies and minimum versions.
Running
-------
If you wish to try Font Manager before installing it, you may
execute it directly from its build directory:
build/src/font-manager/font-manager
Installation
------------
After Font Manager has built, install it by invoking the install target:
ninja -C build install
After installation, it can be uninstalled in the same way:
ninja -C build uninstall
|