1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
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.
'-lnixutil',
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,
)
|