2009-08-07 17:10:39 +00:00
|
|
|
desktopdir=$(datadir)/applications
|
|
|
|
desktop_DATA = gnome-shell.desktop
|
|
|
|
|
|
|
|
# We substitute in bindir so it works as an autostart
|
|
|
|
# file when built in a non-system prefix
|
|
|
|
gnome-shell.desktop.in: gnome-shell.desktop.in.in
|
|
|
|
$(AM_V_GEN) sed -e "s|@bindir[@]|$(bindir)|" \
|
|
|
|
-e "s|@VERSION[@]|$(VERSION)|" \
|
|
|
|
$< > $@ || rm $@
|
|
|
|
|
|
|
|
# Placeholder until we add intltool
|
|
|
|
gnome-shell.desktop: gnome-shell.desktop.in
|
|
|
|
$(AM_V_GEN) sed s/^_// < $< > $@ || rm $@
|
|
|
|
|
2008-12-22 22:05:56 +00:00
|
|
|
imagedir = $(pkgdatadir)/images
|
|
|
|
|
2009-03-10 16:53:03 +00:00
|
|
|
dist_image_DATA = \
|
|
|
|
add-workspace.svg \
|
2009-09-07 14:18:50 +00:00
|
|
|
app-well-glow.png \
|
2009-09-01 23:06:20 +00:00
|
|
|
back.svg \
|
2009-08-05 12:59:57 +00:00
|
|
|
close.svg \
|
2009-08-16 14:09:34 +00:00
|
|
|
close-black.svg \
|
2009-08-05 12:59:57 +00:00
|
|
|
info.svg \
|
2009-08-09 23:48:54 +00:00
|
|
|
magnifier.svg \
|
|
|
|
remove-workspace.svg
|
2009-04-23 14:46:36 +00:00
|
|
|
|
|
|
|
schemadir = @GCONF_SCHEMA_FILE_DIR@
|
|
|
|
schema_DATA = gnome-shell.schemas
|
|
|
|
|
|
|
|
install-data-local:
|
2009-07-17 17:08:32 +00:00
|
|
|
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(srcdir)/$(schema_DATA)
|
2009-04-23 14:46:36 +00:00
|
|
|
|
2009-08-07 17:10:39 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
gnome-shell.desktop.in.in \
|
2009-05-04 00:57:45 +00:00
|
|
|
$(schema_DATA)
|
2009-08-07 17:10:39 +00:00
|
|
|
|
|
|
|
CLEANFILES = \
|
2009-08-10 21:47:52 +00:00
|
|
|
gnome-shell.desktop.in \
|
2009-08-07 17:10:39 +00:00
|
|
|
$(desktop_DATA)
|
|
|
|
|