X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=cb2404f5568eb83fe3db81e0cda6161a75f1ca06;hb=9164d2a499d51727565538c3c9608da18bbc7559;hp=31f51d8856b86e95865b58d1b5955d25b2f30d11;hpb=113dddba81eb49e8770b7d60ba3f9436c602ee30;p=plocate diff --git a/meson.build b/meson.build index 31f51d8..cb2404f 100644 --- a/meson.build +++ b/meson.build @@ -34,7 +34,7 @@ endif executable('plocate', ['plocate.cpp', 'io_uring_engine.cpp', 'turbopfor.cpp', 'parse_trigrams.cpp', 'serializer.cpp', 'access_rx_cache.cpp', 'needle.cpp', 'complete_pread.cpp'], dependencies: [uringdep, zstddep, threaddep, atomicdep], install: true, - install_mode: ['rwxr-sr-x', 'root', 'mlocate']) + install_mode: ['rwxr-sr-x', 'root', get_option('locategroup')]) executable('plocate-build', ['plocate-build.cpp', 'database-builder.cpp'], dependencies: [zstddep], install: true, @@ -63,6 +63,18 @@ endif install_man('plocate.1') install_man('plocate-build.8') +if get_option('install_systemd') + systemd = dependency('systemd', required: false) + if systemd.found() + unitdir = systemd.get_pkgconfig_variable('systemdsystemunitdir') + updatedb_service = configure_file(input: 'plocate-updatedb.service.in', + output: 'plocate-updatedb.service', + configuration: conf_data) + install_data(updatedb_service, install_dir: unitdir) + install_data('plocate-updatedb.timer', install_dir: unitdir) + endif +endif + # Requires having TurboPFor checked out, so not built by default. # Unless you have a recent Meson, there's no apparently good way # of calling into that directory to run make, and we're not