You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
moonstone/ubuntu_smoother/meson.build

45 lines
1.1 KiB
Meson

pkgdatadir = join_paths(get_option('prefix'), get_option('datadir'), meson.project_name())
moduledir = join_paths(pkgdatadir, 'ubuntu_smoother')
gnome = import('gnome')
gnome.compile_resources('ubuntu-smoother',
'ubuntu-smoother.gresource.xml',
gresource_bundle: true,
install: true,
install_dir: pkgdatadir,
)
python = import('python')
conf = configuration_data()
conf.set('PYTHON', python.find_installation('python3').path())
conf.set('VERSION', meson.project_version())
conf.set('localedir', join_paths(get_option('prefix'), get_option('localedir')))
conf.set('pkgdatadir', pkgdatadir)
configure_file(
input: 'ubuntu-smoother.in',
output: 'ubuntu-smoother',
configuration: conf,
install: true,
install_dir: get_option('bindir')
)
configure_file(
input: 'ubuntu-smoother-processor.in',
output: 'ubuntu-smoother-processor',
configuration: conf,
install: true,
install_dir: get_option('bindir')
)
subdir('utils')
subdir('models')
ubuntu_smoother_sources = [
'__init__.py',
'main.py',
'window.py',
]
install_data(ubuntu_smoother_sources, install_dir: moduledir)