FVWM3 uses meson as its build tooling.
The fvwm3 repository has a Dockerfile which can be used to build the
repository. This is the same Docker image as used by Github Actions.
FVWM3 has the following dependencies. Note that across different distributions, the development package names will differ. The names listed below are examples to help you find the appropriately named package for the system in use.
- libevent-dev (>= 2.0)
- libfontconfig-dev
- libfreetype6-dev
- libx11-dev
- libxext-dev
- libxft-dev
- libxkbcommon-dev
- libxrandr-dev (>= 1.5)
- libxrender-dev
- libxt-dev
- xtrans-dev
- asciidoctor
- golang
- libfribidi-dev
- libncurses5-dev
- libpng-dev
- libreadline-dev
- librsvg-dev
- libsm-dev
- libxcursor-dev
- libxfixes-dev
- libxi-dev
- libxpm-dev
- sharutils
fvwm3 won't compile documentation by default, so it's opt-in.
To generate fvwm3's documentation:
- Install
asciidoctor - To generate manpages: pass
-Dmandoc=truetomeson - To generate HTML docs: pass
-Dhtmldoc=truetomeson
Compiling fvwm3 with meson involves the following command. Note that this
is an example; the setup command can be passed various options, see the
meson.options file.
meson setup build && meson compile -C build && meson install -C build