2024-04-01 20:06:44 +00:00
|
|
|
store_xs_cpp = custom_target(
|
|
|
|
input : 'Store.xs',
|
|
|
|
output : 'Store.cc',
|
|
|
|
command : [
|
|
|
|
xsubpp,
|
|
|
|
'@INPUT@',
|
|
|
|
'-output',
|
|
|
|
'@OUTPUT@',
|
|
|
|
],
|
|
|
|
build_by_default : true,
|
|
|
|
)
|
|
|
|
|
|
|
|
soname_args = []
|
|
|
|
if cxx.get_linker_id() in ['ld.bfd', 'ld.gold']
|
|
|
|
soname_args = ['-Wl,-soname=Store.so']
|
|
|
|
endif
|
|
|
|
|
|
|
|
perl_libstore = shared_module(
|
|
|
|
'Store',
|
|
|
|
store_xs_cpp,
|
|
|
|
# This library does NOT get the normal libprefix. it's just `Store.so`, not `libStore.so`.
|
|
|
|
name_prefix : '',
|
|
|
|
dependencies : [
|
|
|
|
libstore,
|
|
|
|
sodium,
|
|
|
|
perl_include,
|
|
|
|
],
|
|
|
|
link_args : [
|
|
|
|
# Nix doesn't provide a pkg-config file for libutil.
|
2024-05-17 00:04:05 +00:00
|
|
|
'-llixutil',
|
2024-04-01 20:06:44 +00:00
|
|
|
soname_args,
|
|
|
|
],
|
|
|
|
install : true,
|
|
|
|
install_dir : perl_libdir / 'auto/Nix/Store',
|
|
|
|
)
|
|
|
|
|
|
|
|
config_pm = configure_file(
|
|
|
|
input : 'Config.pm.in',
|
|
|
|
output : 'Config.pm',
|
|
|
|
configuration : {
|
|
|
|
'PACKAGE_VERSION': meson.project_version(),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
nix_perl_sources = files(
|
|
|
|
'Store.pm',
|
|
|
|
'Manifest.pm',
|
|
|
|
'SSH.pm',
|
|
|
|
'CopyClosure.pm',
|
|
|
|
'Utils.pm',
|
|
|
|
)
|
|
|
|
|
|
|
|
install_data(
|
|
|
|
nix_perl_sources,
|
|
|
|
config_pm,
|
|
|
|
install_dir : perl_libdir / 'Nix',
|
|
|
|
preserve_path : true,
|
|
|
|
)
|