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
|
install_data([
'netjail'/'netjail_core.sh',
'netjail'/'netjail_exec.sh',
'netjail'/'netjail_start.sh',
'netjail'/'netjail_stop.sh',
'netjail'/'topo.sh',
],
install_dir: get_option('datadir')/'gnunet')
#install_data('xdg-scheme-handler'/'gnunet-uri.desktop',
# install_dir: get_option('datadir')/'applications')
binfiles = [
'dosubst.awk',
'grephdr.sh',
'grepsrc.sh',
'pogen.sh',
'rename.sh',
'gana_update.sh',
'sphinx_update.sh',
]
foreach f : binfiles
configure_file(input : f,
output : f,
copy: true)
endforeach
|