X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=329adcb4d257a685dde5e18259431b7467867dee;hb=fd6198891d6fd9642effc0843fef6f23b991af3e;hp=feb6c5a57f7c27a994189c2c36146acd4cb32449;hpb=63fd24efd774f1ed3f5dab82b934f35b7b039557;p=plocate diff --git a/meson.build b/meson.build index feb6c5a..329adcb 100644 --- a/meson.build +++ b/meson.build @@ -1,8 +1,9 @@ -project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.8-pre') +project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.1.17-pre') add_project_arguments('-DGROUPNAME="' + get_option('locategroup') + '"', language: 'cpp') add_project_arguments('-DUPDATEDB_CONF="/etc/updatedb.conf"', language: 'cpp') -add_project_arguments('-DDBFILE="/var/lib/mlocate/plocate.db"', language: 'cpp') +dbfile = join_paths(get_option('sharedstatedir'), get_option('dbpath')) +add_project_arguments('-DDBFILE="' + dbfile + '"', language: 'cpp') add_project_arguments('-DPACKAGE_NAME="plocate"', language: 'cpp') add_project_arguments('-DPACKAGE_VERSION="' + meson.project_version() + '"', language: 'cpp') add_project_arguments('-DPACKAGE_BUGREPORT="steinar+plocate@gunderson.no"', language: 'cpp') @@ -32,24 +33,31 @@ 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, install_dir: get_option('sbindir')) -executable('updatedb', ['updatedb.cpp', 'database-builder.cpp', 'conf.cpp', 'lib.cpp', 'bind-mount.cpp', 'complete_pread.cpp'], +updatedb_progname = get_option('updatedb_progname') +executable(updatedb_progname, ['updatedb.cpp', 'database-builder.cpp', 'conf.cpp', 'lib.cpp', 'bind-mount.cpp', 'complete_pread.cpp'], dependencies: [zstddep, threaddep], install: true, install_dir: get_option('sbindir')) 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')) +conf_data.set('sbindir', join_paths(get_option('prefix'), get_option('sbindir'))) +conf_data.set('groupname', get_option('locategroup')) +conf_data.set('dbfile', dbfile) +conf_data.set('updatedb_conf', '/etc/updatedb.conf') +conf_data.set('updatedb_progname', updatedb_progname) update_script = configure_file(input: 'update-plocate.sh', output: 'update-plocate.sh', configuration: conf_data) +fs = import('fs') +meson.add_install_script('mkdir.sh', fs.parent(dbfile)) + if get_option('install_cron') install_data(update_script, install_dir: '/etc/cron.daily', @@ -58,6 +66,33 @@ endif install_man('plocate.1') install_man('plocate-build.8') +updatedb_man = configure_file(input: 'updatedb.8.in', + output: updatedb_progname + '.8', + configuration: conf_data) +install_man(updatedb_man) + +updatedb_conf_man = configure_file(input: 'updatedb.conf.5.in', + output: 'updatedb.conf.5', + configuration: conf_data) +install_man(updatedb_conf_man) + +if get_option('install_systemd') + unitdir = get_option('systemunitdir') + if unitdir == '' + systemd = dependency('systemd', required: false) + if systemd.found() + unitdir = systemd.get_pkgconfig_variable('systemdsystemunitdir') + endif + endif + if unitdir != '' + 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 @@ -67,7 +102,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', 'turbopfor.cpp'], + executable('bench', ['bench.cpp', 'io_uring_engine.cpp', 'turbopfor.cpp', 'complete_pread.cpp'], dependencies: [uringdep, turbopfordep], build_by_default: false, install: false)