diff options
author | rbuj <[email protected]> | 2021-01-26 13:08:32 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-02-04 22:46:51 +0100 |
commit | 97e1fe87f7cb362e0731b4aceec5b8f21e5632d1 (patch) | |
tree | 5feb76d92b71af6159d77f383e4a9851b215219f /plugins/spell | |
parent | 299d0088a38a465c9de2ef890cecba9bd7a2b0f5 (diff) | |
download | pluma-97e1fe87f7cb362e0731b4aceec5b8f21e5632d1.tar.bz2 pluma-97e1fe87f7cb362e0731b4aceec5b8f21e5632d1.tar.xz |
build: Use PACKAGE_URL variable
Diffstat (limited to 'plugins/spell')
-rw-r--r-- | plugins/spell/Makefile.am | 9 | ||||
-rw-r--r-- | plugins/spell/spell.plugin.desktop.in.in (renamed from plugins/spell/spell.plugin.desktop.in) | 2 |
2 files changed, 6 insertions, 5 deletions
diff --git a/plugins/spell/Makefile.am b/plugins/spell/Makefile.am index 3500950c..9a83544d 100644 --- a/plugins/spell/Makefile.am +++ b/plugins/spell/Makefile.am @@ -33,8 +33,9 @@ ui_files = spell-checker.ui languages-dialog.ui pluma-spell-setup-dialog.ui include $(top_srcdir)/gla11y.mk ui_DATA = $(ui_files) -plugin_in_files = spell.plugin.desktop.in -plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin) +plugin_DATA = spell.plugin +plugin_in_files = $(plugin_DATA:.plugin=.plugin.desktop.in) +plugin_in_in_files = $(plugin_in_files:.plugin.desktop.in=.plugin.desktop.in.in) $(plugin_DATA): $(plugin_in_files) $(AM_V_GEN) $(MSGFMT) --keyword=Name --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@ @@ -43,13 +44,13 @@ spell_gschema_in = org.mate.pluma.plugins.spell.gschema.xml.in gsettings_SCHEMAS = $(spell_gschema_in:.xml.in=.xml) @GSETTINGS_RULES@ - EXTRA_DIST = \ $(ui_DATA) \ - $(plugin_in_files) \ + $(plugin_in_in_files) \ $(spell_gschema_in) \ ui-a11y.suppr CLEANFILES = $(plugin_DATA) $(gsettings_SCHEMAS) +DISTCLEANFILES = $(plugin_in_files) -include $(top_srcdir)/git.mk diff --git a/plugins/spell/spell.plugin.desktop.in b/plugins/spell/spell.plugin.desktop.in.in index f020e753..dc8a1824 100644 --- a/plugins/spell/spell.plugin.desktop.in +++ b/plugins/spell/spell.plugin.desktop.in.in @@ -7,4 +7,4 @@ Description=Checks the spelling of the current document. Icon=tools-check-spelling Authors=Paolo Maggi <[email protected]> Copyright=Copyright © 2002-2005 Paolo Maggi -Website=https://mate-desktop.org +Website=@PACKAGE_URL@ |