mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 21:43:02 +01:00
Improve readability of INSTALL.md
This commit is contained in:
parent
0fea930c24
commit
03673cbced
35
INSTALL.md
35
INSTALL.md
@ -5,7 +5,7 @@
|
|||||||
* [Documentation](#documentation)
|
* [Documentation](#documentation)
|
||||||
* [Notes](#notes)
|
* [Notes](#notes)
|
||||||
* [Compilation variables](#compilation-variables)
|
* [Compilation variables](#compilation-variables)
|
||||||
* [Packaging](#packaging)
|
* [Environment variables](#environment-variables)
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
| Name | Needed by | Debian package |
|
| Name | Needed by | Debian package |
|
||||||
@ -39,29 +39,28 @@ You can omit `libnotify` if you intend to build without desktop notifications en
|
|||||||
## Compiling
|
## Compiling
|
||||||
```
|
```
|
||||||
make
|
make
|
||||||
sudo env PREFIX="/where/to/install" make install
|
sudo make install
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Documentation
|
#### Documentation
|
||||||
Run `make doc` in the build directory after editing the asciidoc files to regenerate the manpages.<br />
|
Run `make doc` in the build directory after editing the asciidoc files to regenerate the manpages.<br />
|
||||||
**NOTE FOR DEVELOPERS**: asciidoc files and generated manpages will need to be commited together.<br />
|
**Note for developers**: asciidoc files and generated manpages will need to be committed together.<br />
|
||||||
**NOTE FOR EVERYONE**: [asciidoc](http://asciidoc.org/index.html) (and this step) is only required for regenerating manpages when you modify them.
|
**Note for everyone**: [asciidoc](http://asciidoc.org/index.html) (and this step) is only required for regenerating manpages when you modify them.
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
|
|
||||||
#### Compilation variables
|
#### Compilation variables
|
||||||
* You can add specific flags to the Makefile with `USER_CFLAGS=""` and `USER_LDFLAGS=""` passed as the arguments to make or as environment variables
|
* You can add specific flags to the Makefile with `USER_CFLAGS=""` and `USER_LDFLAGS=""` passed as arguments to make, or as environment variables
|
||||||
* You can use CFLAGS and LDFLAGS environment variables to add specific flags to the Makefile
|
* Default compile options can be overridden by using special variables:
|
||||||
* Additional features are automatically enabled if all dependencies are found, but you can disable them by using special variables:
|
* `DISABLE_X11=1` → Disable X11 support (needed for focus tracking)
|
||||||
* `DISABLE_X11=1` → build toxic without X11 support (needed for focus tracking)
|
* `DISABLE_AV=1` → Disable audio call support
|
||||||
* `DISABLE_AV=1` → build toxic without audio call support
|
* `DISABLE_SOUND_NOTIFY=1` → Disable sound notifications support
|
||||||
* `DISABLE_SOUND_NOTIFY=1` → build toxic without sound notifications support
|
* `DISABLE_DESKTOP_NOTIFY=1` → Disable desktop notifications support
|
||||||
* `DISABLE_DESKTOP_NOTIFY=1` → build toxic without desktop notifications support
|
* `ENABLE_PYTHON=1` → Build toxic with Python scripting support
|
||||||
* Features excluded from the default build must be explicitly enabled using special variables:
|
|
||||||
* `ENABLE_PYTHON=1` → build toxic with Python scripting support
|
|
||||||
|
|
||||||
#### Packaging
|
* `DESTDIR=""` Specifies the base install directory for binaries and data files (e.g.: DESTDIR="/tmp/build/pkg")
|
||||||
* For packaging purpose, you can use `DESTDIR=""` to specify a directory where to store installed files
|
|
||||||
* `DESTDIR=""` can be used in addition to `PREFIX=""`:
|
#### Environment variables
|
||||||
* `DESTDIR=""` is meant to specify a directory where to store installed files (ex: "/tmp/build/pkg")
|
* You can use the `CFLAGS` and `LDFLAGS` environment variables to add specific flags to the Makefile
|
||||||
* `PREFIX=""` is meant to specify a prefix directory for binaries and data files (ex: "/usr/local")
|
* The `PREFIX` environment variable specifies a base install directory for binaries and data files. This is interchangeable with the `DESTDIR` variable, and is generally used by systems that have the `PREFIX` environment variable set by default.<br />
|
||||||
|
**Note**: `sudo` does not preserve user environment variables by default on some systems. See the `sudoers` manual for more information.
|
||||||
|
Loading…
Reference in New Issue
Block a user