"Fossies" - the Fresh Open Source Software Archive 
Member "revelation-0.5.4/src/meson.build" (4 Oct 2020, 809 Bytes) of package /linux/privat/revelation-0.5.4.tar.xz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 install_data(
2 'revelation.py',
3 rename: 'revelation',
4 install_mode: 'rwxr-xr-x',
5 install_dir: bindir,
6 )
7
8 install_subdir(
9 'lib',
10 install_dir: libdir,
11 strip_directory: true,
12 exclude_files: ['Makefile.am', 'Makefile.in',
13 'datahandler/Makefile.am', 'datahandler/Makefile.in',
14 'config.py.in']
15 )
16
17 install_subdir(
18 'bundle',
19 install_dir: libdir,
20 strip_directory: false,
21 exclude_files: ['Makefile.am', 'Makefile.in']
22 )
23
24 config_conf = configuration_data()
25 config_conf.set('pkgdatadir', rvl_pkgdatadir)
26 config_conf.set('datadir', rvl_datadir)
27 config_conf.set('PACKAGE', rvl_name)
28 config_conf.set('VERSION', rvl_version)
29
30 configure_file(
31 input: 'lib/config.py.in',
32 output: 'config.py',
33 install: true,
34 install_dir: libdir,
35 configuration: config_conf,
36 )