File: meson.build

package info (click to toggle)
siril 1.4.0~rc2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 47,352 kB
  • sloc: ansic: 174,082; cpp: 28,254; python: 7,891; makefile: 974; xml: 777; sh: 271
file content (24 lines) | stat: -rw-r--r-- 721 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# List of Python files to install (outside of siril subdirectory)
python_files = [
  'pyproject.toml',
  'MANIFEST.in',
]

# Install individual files (not inside subdirectories)
install_data(python_files,
            install_dir: siril_datadir + '/python_module'
)
            
install_data(['README.md'],
            install_dir: siril_share + 'doc/siril/python_module'
)

# Create the locale directory in doc and install its README.md
install_data(['locale/README.md'],
            install_dir: siril_share + 'doc/siril/python_module/locale'
)

# Install the entire 'sirilpy' subdirectory (this will handle all .py files in sirilpy/)
install_subdir('sirilpy',
            install_dir: siril_datadir + '/python_module'
)