X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=1577bdb540aaa287c33a1df44172ea88e6899b5a;hb=e274ae443a12b7ef37b0ae4f4d564c3bc2656f91;hp=5bf6d993fe1474604a6e588c7aa0a9b3558df30b;hpb=c4d3a7eb75a36921310731ca6e85fe2a5d65c0fa;p=plocate diff --git a/meson.build b/meson.build index 5bf6d99..1577bdb 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -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.2-pre') # Make the version available as a #define. add_project_arguments('-DPLOCATE_VERSION="' + meson.project_version() + '"', language: 'cpp') @@ -20,7 +20,13 @@ 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')