1
0
mirror of https://github.com/GNOME/gedit synced 2024-06-30 23:15:01 +00:00

Meson: plugins: pythonconsole: refactorings

This commit is contained in:
Sébastien Wilmet 2024-06-26 22:59:01 +02:00
parent 445f5297ce
commit 06f9850352
2 changed files with 9 additions and 21 deletions

View File

@ -1,9 +1,9 @@
subdir('pythonconsole')
pythonconsole_gschema_file = files('org.gnome.gedit.plugins.pythonconsole.gschema.xml')
plugin_pythonconsole_gschema_file = files('org.gnome.gedit.plugins.pythonconsole.gschema.xml')
install_data(
pythonconsole_gschema_file,
install_dir: join_paths(get_option('prefix'), get_option('datadir'), 'glib-2.0/schemas')
plugin_pythonconsole_gschema_file,
install_dir: get_option('datadir') / 'glib-2.0/schemas',
)
if xmllint.found()
@ -13,7 +13,7 @@ if xmllint.found()
args: [
'--noout',
'--dtdvalid', gschema_dtd,
pythonconsole_gschema_file,
plugin_pythonconsole_gschema_file,
]
)
endif
@ -24,8 +24,5 @@ custom_target(
output: 'pythonconsole.plugin',
command: msgfmt_plugin_cmd,
install: true,
install_dir: join_paths(
pkglibdir,
'plugins',
)
install_dir: get_option('libdir') / 'gedit/plugins',
)

View File

@ -1,24 +1,15 @@
pythonconsole_sources = files(
plugin_pythonconsole_sources = files(
'__init__.py',
'config.py',
'console.py',
)
install_data(
pythonconsole_sources,
install_dir: join_paths(
pkglibdir,
'plugins',
'pythonconsole',
)
plugin_pythonconsole_sources,
install_dir: get_option('libdir') / 'gedit/plugins/pythonconsole',
)
install_data(
'config.ui',
install_dir: join_paths(
pkgdatadir,
'plugins',
'pythonconsole',
'ui',
)
install_dir: get_option('datadir') / 'gedit/plugins/pythonconsole/ui',
)