aboutsummaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2021-08-22 13:09:30 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2021-09-04 16:01:29 -0500
commitd6622a1156929294b909d08273fd227c7d817bb9 (patch)
tree29df9fc3ecae9e72e467effc91f3985eafaccd82 /meson_options.txt
parent92004a2ed65045b7ca79063dda8fc5b4ac761606 (diff)
add meson build files
Closes #116. Closes #171. Closes #172. Closes #175.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 00000000..5fbafac9
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,30 @@
+option('audit', type : 'feature', value : 'auto',
+ description : 'enable libaudit support')
+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('root_prefix', type : 'string',
+ description : 'default path of root directory')
+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('termcap', type : 'combo',
+ choices :
+ [ '', 'ncurses', 'termcap' ],
+ description : 'the termcap library to use')