X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=aab3384fe20fe32d91c9786529f9c509a53fd52c;hb=f4b85490ac5a4138be92d24e66e4f7511c50612a;hp=31f51d8856b86e95865b58d1b5955d25b2f30d11;hpb=113dddba81eb49e8770b7d60ba3f9436c602ee30;p=plocate diff --git a/meson.build b/meson.build index 31f51d8..aab3384 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', 'plocate']) 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