Xdg-user-dirs is a tool to help manage “well known” user directories like the desktop folder and the music folder. It also handles localization (i.e. translation) of the filenames.
Install xdg-user-dirs by running the following commands:
mkdir build && cd build && meson setup --prefix=/usr \ --buildtype=release \ -D docs=false \ .. && ninja
Now, as the root
user:
ninja install && rm -rvf /usr/lib/systemd
Inspect meson_options.txt
or
meson.options
for a full list of
options.
-D docs=false
: Disables the
installation of the man pages.