Last active
October 11, 2023 23:29
-
-
Save zoliky/a43693bc307096ba7298234934ab2575 to your computer and use it in GitHub Desktop.
Installing mu4e from source on Debian 12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Installation | |
------------ | |
1. Install the build dependencies for mu4e: | |
$ sudo apt install libglib2.0-dev libgmime-3.0-dev libxapian-dev guile-3.0-dev texinfo install-info meson | |
2. Download the mu4e source code from https://github.com/djcb/mu/releases | |
3. Install mu4e in HOME/.local: | |
$ meson build --prefix=$HOME/.local | |
$ ninja -C build | |
$ ninja -C build install | |
Uninstallation | |
-------------- | |
$ sudo make uninstall | |
$ make clean | |
$ make distclean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment