| pkgdatadir = get_option('prefix') / get_option('datadir') / meson.project_name()
|
| moduledir = pkgdatadir / 'garnish'
|
| gnome = import('gnome')
|
|
|
|
|
| blueprints = custom_target('blueprints',
|
| input: files(
|
| 'shortcuts-dialog.blp',
|
| 'window.blp',
|
| ),
|
| output: '.',
|
| command: [find_program('blueprint-compiler'), 'batch-compile', '--minify', '@OUTPUT@', '@CURRENT_SOURCE_DIR@', '@INPUT@'],
|
| )
|
|
|
|
|
| gnome.compile_resources('garnish',
|
| 'garnish.gresource.xml',
|
| dependencies: blueprints,
|
| gresource_bundle: true,
|
| install: true,
|
| install_dir: pkgdatadir,
|
|
|
|
|
| )
|
|
|
|
|
| python = import('python')
|
|
|
| conf = configuration_data()
|
| conf.set('PYTHON', python.find_installation('python3').full_path())
|
| conf.set('VERSION', meson.project_version())
|
| conf.set('localedir', get_option('prefix') / get_option('localedir'))
|
| conf.set('pkgdatadir', pkgdatadir)
|
|
|
| configure_file(
|
| input: 'garnish.in',
|
| output: 'garnish',
|
| configuration: conf,
|
| install: true,
|
| install_dir: get_option('bindir'),
|
| install_mode: 'rwxr-xr-x'
|
| )
|
|
|
| garnish_sources = [
|
| '__init__.py',
|
| 'main.py',
|
| 'window.py',
|
| ]
|
|
|
| install_data(garnish_sources, install_dir: moduledir)
|