mirror of
https://github.com/OpenRC/openrc.git
synced 2026-01-27 01:44:36 +00:00
32 lines
1.5 KiB
Meson
32 lines
1.5 KiB
Meson
option('audit', type : 'feature', value : 'auto',
|
|
description : 'enable libaudit support')
|
|
option('bash-completions', type : 'boolean',
|
|
description : 'install bash completions')
|
|
option('branding', type : 'string',
|
|
description : 'Add branding to OpenRC')
|
|
option('local_prefix', type : 'string', value : '/usr/local',
|
|
description : 'default location of user maintained packages')
|
|
option('newnet', type : 'boolean',
|
|
description : 'build and install our networking scripts')
|
|
option('pam', type : 'boolean',
|
|
description : 'enable PAM support')
|
|
option('pam_libdir', type : 'string',
|
|
description : 'directory to install pam security modules')
|
|
option('pkg_prefix', type : 'string',
|
|
description : 'default location where packages are installed')
|
|
option('pkgconfig', type : 'boolean',
|
|
description : 'build PKGConfig files')
|
|
option('selinux', type : 'feature', value : 'auto',
|
|
description : 'enable SELinux support')
|
|
option('shell', type : 'string', value : '/bin/sh',
|
|
description : 'Default posix compatible shell')
|
|
option('sysvinit', type : 'boolean', value : false,
|
|
description : 'enable SysVinit compatibility (linux only)')
|
|
option('zsh-completions', type : 'boolean',
|
|
description : 'install zsh completions')
|
|
option('uucp_group', type : 'string', value : 'uucp',
|
|
description : 'group to use for /run/lock')
|
|
option('agetty', type: 'array',
|
|
value: ['tty1', 'tty2', 'tty3', 'tty4', 'tty5', 'tty6'],
|
|
description : 'agetty symlinks to install when sysvinit is also specified')
|