X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=641a056272d1f632e9fe16bcf80fd2b4c9a96550;hb=01d1d7762850972ebc26f9cb4bf380e75c137e90;hp=e8c37f04f7d3a13a930bcc0e552d08667f4e47cd;hpb=cd039dbe697f95601f04ce4e93306074ea97346c;p=plocate diff --git a/meson.build b/meson.build index e8c37f0..641a056 100644 --- a/meson.build +++ b/meson.build @@ -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.1') + +# 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) @@ -8,7 +11,7 @@ if not uringdep.found() add_project_arguments('-DWITHOUT_URING', language: 'cpp') endif -executable('plocate', ['plocate.cpp', 'io_uring_engine.cpp'], +executable('plocate', ['plocate.cpp', 'io_uring_engine.cpp', 'turbopfor.cpp', 'parse_trigrams.cpp'], dependencies: [uringdep, zstddep], install: true, install_mode: ['rwxr-sr-x', 'root', 'mlocate']) @@ -17,9 +20,17 @@ executable('plocate-build', 'plocate-build.cpp', install: true, install_dir: get_option('sbindir')) +conf_data = configuration_data() +conf_data.set('sbindir', get_option('prefix') + '/' + get_option('sbindir')) +configure_file(input: 'update-plocate.sh', + output: 'update-plocate.sh', + configuration: conf_data) + install_data('update-plocate.sh', 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