mirror of
https://github.com/pulseaudio/pulseaudio.git
synced 2024-11-23 09:53:32 +08:00
114cdfbdde
This is a working implementation of a build with meson. The server, utils, and most modules build with this, and it is possible to run from a build tree and play/capture audio on ALSA devices. There are a number of FIXMEs, of course, and a number of features that need to be enabled (modules, dependencies, installation, etc.), but this should provide everything we need to get there relatively quickly. To use this, install meson (distro package, or mesonbuild.com) and run: $ cd <pulseaudio src dir> $ meson <builddir> $ ninja -C <builddir>
14 lines
650 B
Meson
14 lines
650 B
Meson
option('system_user',
|
|
type : 'string', value : 'pulse',
|
|
description : 'User for running the PulseAudio daemon as a system-wide instance (pulse)')
|
|
option('system_group',
|
|
type : 'string', value : 'pulse',
|
|
description : 'Group for running the PulseAudio daemon as a system-wide instance (pulse)')
|
|
option('access_group',
|
|
type : 'string', value : 'pulse-access',
|
|
description : 'Group which is allowed access to a system-wide PulseAudio daemon (pulse-access)')
|
|
option('database',
|
|
type : 'combo', value : 'tdb',
|
|
choices : [ 'gdbm', 'tdb', 'simple' ],
|
|
description : 'Database backend')
|