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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
Introduction:
-------------
Preliminary documentation can be found at https://world.pages.gitlab.gnome.org/dLeyna/docs
Compilation
------------
TODO
Working with the source code repository
---------------------------------------
dLeyna can be downloaded, compiled and installed as
follows:
Clone repository
```
# git clone https://gitlab.gnome.org/World/dLeyna
# cd dLeyna
```
Configure and build
```
# meson setup build
# ninja -C build
```
Final installation
```
# sudo ninja -C build install
```
Configure Options:
------------------
`-Dlog_level`
See logging.txt for more information about logging.
`-Dconnector`
Set the IPC mechanism to be used.
`-Dbuild_server`
This option is enabled by default. To disable it use `-Dbuild_server=false`.
When disbled, only the libdleyna-server library is built.
`-user_agent_prefix`
This option allows a prefix to be added to the SOUP session user agent.
For example, `-Duser_agent_prefix=MyPrefix` can be used to change a default user
agent string from "dLeyna/0.0.1 GUPnP/0.19.4 DLNADOC/1.50" to
"MyPrefix dLeyna/0.0.1 GUPnP/0.19.4 DLNADOC/1.50".
`-Ddbus_service_dir`
By default, the dbus service files are installed in `$(datadir)/dbus-1/services.`
This option allows to choose another installation directory.
`-Dman_pages`
Whether to build the man pages for the server
|