mirror of
https://github.com/OpenRC/openrc.git
synced 2024-11-23 01:43:37 +08:00
7c31e504d5
This change removes the ROOTPREFIX build setting. If your OS expects to have / mounted earlier in the boot process than /usr, you will need to pass the appropriate directory settings to "meson setup" as part of the build process, for example: $ meson setup \ --bindir /bin --libdir /lib64 --libexecdir /lib --sbindir /sbin \ build also, move plugins to ```libdir/rc/plugins``` which is the standard location for plugins accessed via dlopen.
29 lines
1.3 KiB
Meson
29 lines
1.3 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('os', type : 'combo',
|
|
choices :
|
|
[ '', 'DragonFly', 'FreeBSD', 'GNU', 'GNU-kFreeBSD', 'Linux', 'NetBSD' ],
|
|
description : 'Operating System (autodetected if not specified)')
|
|
option('pam', type : 'boolean',
|
|
description : 'enable PAM support')
|
|
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')
|