]> git.sesse.net Git - plocate/blobdiff - meson.build
Bump version number.
[plocate] / meson.build
index 070a804fb89cea93e02a793e53893b928edbc422..1ef6b4a3ef17608ba25c3a5cbd2c8e69cfd36a69 100644 (file)
@@ -1,4 +1,7 @@
-project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.0-pre')
+project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.3-pre')
+
+# Make the version available as a #define.
+add_project_arguments('-DPLOCATE_VERSION="' + meson.project_version() + '"', language: 'cpp')
 
 cxx = meson.get_compiler('cpp')
 uringdep = dependency('liburing', required: false)
@@ -17,9 +20,17 @@ executable('plocate-build', 'plocate-build.cpp',
        install: true,
        install_dir: get_option('sbindir'))
 
-install_data('update-plocate.sh',
+conf_data = configuration_data()
+conf_data.set('sbindir', get_option('prefix') + '/' + get_option('sbindir'))
+update_script = configure_file(input: 'update-plocate.sh',
+               output: 'update-plocate.sh',
+               configuration: conf_data)
+
+install_data(update_script,
        install_dir: '/etc/cron.daily',
        rename: 'plocate')
+install_man('plocate.1')
+install_man('plocate-build.8')
 
 # Requires having TurboPFor checked out, so not built by default.
 # Unless you have a recent Meson, there's no apparently good way