X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=cbb0cfb6cd65806188dc227bf9dd211109b29443;hb=436bb5d60934c534b2ddab599236493fbff4da23;hp=8a67ae7eecae902131710ea7df1a8bbc8facde8d;hpb=b5cb3f03f79894131c7e15cbf68ea938831f6a84;p=plocate diff --git a/meson.build b/meson.build index 8a67ae7..cbb0cfb 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.1-pre') +project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.4-pre') # Make the version available as a #define. add_project_arguments('-DPLOCATE_VERSION="' + meson.project_version() + '"', language: 'cpp') @@ -20,9 +20,19 @@ executable('plocate-build', 'plocate-build.cpp', install: true, install_dir: get_option('sbindir')) -install_data('update-plocate.sh', - install_dir: '/etc/cron.daily', - rename: 'plocate') +conf_data = configuration_data() +conf_data.set('PROCESSED_BY_MESON', '1') +conf_data.set('sbindir', get_option('prefix') + '/' + get_option('sbindir')) +conf_data.set('locategroup', get_option('locategroup')) +update_script = configure_file(input: 'update-plocate.sh', + output: 'update-plocate.sh', + configuration: conf_data) + +if get_option('install_cron') + install_data(update_script, + install_dir: '/etc/cron.daily', + rename: 'plocate') +endif install_man('plocate.1') install_man('plocate-build.8') @@ -35,7 +45,7 @@ if run_command('[', '-r', pfordir + '/libic.a', ']').returncode() == 0 turbopfordep = declare_dependency( include_directories: include_directories('TurboPFor-Integer-Compression'), dependencies: meson.get_compiler('cpp').find_library('ic', dirs: pfordir)) - executable('bench', ['bench.cpp', 'io_uring_engine.cpp'], + executable('bench', ['bench.cpp', 'io_uring_engine.cpp', 'turbopfor.cpp'], dependencies: [uringdep, turbopfordep], build_by_default: false, install: false)