diff options
author | rbuj <[email protected]> | 2020-08-01 12:52:49 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-08-11 16:46:01 +0200 |
commit | 914262d420e78766ae11b85403aa2247d5054d46 (patch) | |
tree | e96a00081af65a1523ff0bbfbb4fa40f82072b1d /geyes/data/Makefile.am | |
parent | 1ee4ea5cc7e554b481da4e052e1c7b46d03b6b5b (diff) | |
download | mate-applets-914262d420e78766ae11b85403aa2247d5054d46.tar.bz2 mate-applets-914262d420e78766ae11b85403aa2247d5054d46.tar.xz |
geyes: Use common subdirs - src, icons, data
Diffstat (limited to 'geyes/data/Makefile.am')
-rw-r--r-- | geyes/data/Makefile.am | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/geyes/data/Makefile.am b/geyes/data/Makefile.am new file mode 100644 index 00000000..0342bdaf --- /dev/null +++ b/geyes/data/Makefile.am @@ -0,0 +1,46 @@ +NULL = + +appletdir = $(datadir)/mate-panel/applets +applet_in_files = org.mate.applets.GeyesApplet.mate-panel-applet.desktop.in +applet_DATA = $(applet_in_files:.mate-panel-applet.desktop.in=.mate-panel-applet) + +$(applet_in_files): $(applet_in_files).in Makefile + $(AM_V_GEN)sed \ + -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ + -e "s|\@VERSION\@|$(PACKAGE_VERSION)|" \ + $< > $@ + +$(applet_DATA): $(applet_in_files) Makefile + $(AM_V_GEN) $(MSGFMT) --desktop --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@ + +servicedir = $(datadir)/dbus-1/services +service_in_files = org.mate.panel.applet.GeyesAppletFactory.service.in +service_DATA = $(service_in_files:.service.in=.service) + +org.mate.panel.applet.GeyesAppletFactory.service: $(service_in_files) + $(AM_V_GEN)sed \ + -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ + $< > $@ + +geyes_gschema_in_files = org.mate.panel.applet.geyes.gschema.xml.in +gsettings_SCHEMAS = $(geyes_gschema_in_files:.xml.in=.xml) +@GSETTINGS_RULES@ + +CLEANFILES = \ + $(applet_DATA) \ + $(applet_in_files) \ + $(service_DATA) \ + $(gsettings_SCHEMAS) \ + *.gschema.valid \ + $(NULL) + +EXTRA_DIST = \ + geyes-applet-menu.xml \ + geyes-resources.gresource.xml \ + themes.ui \ + $(applet_in_files).in \ + $(service_in_files) \ + $(geyes_gschema_in_files) \ + $(NULL) + +-include $(top_srcdir)/git.mk |