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/filebrowser | |
parent | 299d0088a38a465c9de2ef890cecba9bd7a2b0f5 (diff) | |
download | pluma-97e1fe87f7cb362e0731b4aceec5b8f21e5632d1.tar.bz2 pluma-97e1fe87f7cb362e0731b4aceec5b8f21e5632d1.tar.xz |
build: Use PACKAGE_URL variable
Diffstat (limited to 'plugins/filebrowser')
-rw-r--r-- | plugins/filebrowser/Makefile.am | 15 | ||||
-rw-r--r-- | plugins/filebrowser/filebrowser.plugin.desktop.in.in (renamed from plugins/filebrowser/filebrowser.plugin.desktop.in) | 2 |
2 files changed, 9 insertions, 8 deletions
diff --git a/plugins/filebrowser/Makefile.am b/plugins/filebrowser/Makefile.am index ecc55088..5f6c99ab 100644 --- a/plugins/filebrowser/Makefile.am +++ b/plugins/filebrowser/Makefile.am @@ -3,8 +3,8 @@ plugindir = $(PLUMA_PLUGINS_LIBS_DIR) AM_CPPFLAGS = \ - -I$(top_srcdir) \ - $(PLUMA_CFLAGS) \ + -I$(top_srcdir) \ + $(PLUMA_CFLAGS) \ $(WARN_CFLAGS) BUILT_SOURCES = \ @@ -41,8 +41,9 @@ libfilebrowser_la_LIBADD = $(PLUMA_LIBS) uidir = $(PLUMA_PLUGINS_DATA_DIR)/filebrowser ui_DATA = pluma-file-browser-widget-ui.xml -plugin_in_files = filebrowser.plugin.desktop.in -plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin) +plugin_DATA = filebrowser.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 $@ @@ -61,20 +62,20 @@ gsettings_SCHEMAS = $(filebrowser_gschema_in:.xml.in=.xml) EXTRA_DIST = \ $(ui_DATA) \ - $(plugin_in_files) \ + $(plugin_in_in_files) \ $(filebrowser_gschema_in) \ pluma-file-browser-enum-types.h.template \ pluma-file-browser-enum-types.c.template \ pluma-file-browser-enum-register.c.template CLEANFILES = \ - $(plugin_DATA) \ + $(plugin_DATA) \ $(gsettings_SCHEMAS_in) \ $(gsettings_SCHEMAS) \ $(BUILT_SOURCES) DISTCLEANFILES = \ - $(plugin_DATA) \ + $(plugin_in_files) \ $(gsettings_SCHEMAS_in) \ $(gsettings_SCHEMAS) \ $(BUILT_SOURCES) diff --git a/plugins/filebrowser/filebrowser.plugin.desktop.in b/plugins/filebrowser/filebrowser.plugin.desktop.in.in index 13760d41..a40173c7 100644 --- a/plugins/filebrowser/filebrowser.plugin.desktop.in +++ b/plugins/filebrowser/filebrowser.plugin.desktop.in.in @@ -8,4 +8,4 @@ Description=Easy file access from the side pane Icon=system-file-manager Authors=Jesse van den Kieboom <[email protected]> Copyright=Copyright © 2006 Jesse van den Kieboom -Website=https://mate-desktop.org +Website=@PACKAGE_URL@ |