summaryrefslogtreecommitdiff
path: root/data/Makefile.am
blob: f6a99571404bce6e1bac4c2452735900c5c0ab34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
SUBDIRS = icons
NULL=

install-data-local: update-icon-cache

#
# man file
#

man_MANS=atril.1

#
# UI descriptions
#

uidir = $(pkgdatadir)
ui_DATA = \
	hand-open.png

#
# Desktop file
#

desktopdir = $(datadir)/applications
desktop_in_files = atril.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
$(desktop_DATA): $(desktop_in_files)
	$(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@

#
# DBus servide file
#

if ENABLE_DBUS
servicedir = $(datadir)/dbus-1/services
service_in_files = org.mate.atril.Daemon.service.in
service_DATA = $(service_in_files:.service.in=.service)

$(service_DATA): $(service_in_files) Makefile
	$(AM_V_GEN) $(SED) -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@
endif

#
# App data file
#

appdatadir = $(datadir)/metainfo
appdata_in_in_files = atril.appdata.xml.in.in
appdata_in_files = $(appdata_in_in_files:.appdata.xml.in.in=.appdata.xml.in)
appdata_DATA = $(appdata_in_files:.xml.in=.xml)
$(appdata_DATA): $(appdata_in_files)
	$(AM_V_GEN) $(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@

#
# GSettings schema
#

gsettings_SCHEMAS = org.mate.Atril.gschema.xml

.PRECIOUS: $(gsettings_SCHEMAS)

# include the appropriate makefile rules for schema handling
@GSETTINGS_RULES@

#
# GTK icon cache
#

gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor

install-data-hook: update-icon-cache
uninstall-hook: update-icon-cache

update-icon-cache:
	if test -z "$(DESTDIR)"; then \
	        echo "Updating Gtk icon cache."; \
	        $(gtk_update_icon_cache); \
	else \
	        echo "*** Icon cache not updated.  After (un)install, run this:"; \
	        echo "***   $(gtk_update_icon_cache)"; \
	        fi

#
# Extra files to be included in the tarball
#

EXTRA_DIST =					\
	$(appdata_in_in_files)			\
	$(desktop_in_files)			\
	$(gsettings_SCHEMAS)			\
	$(man_MANS)				\
	$(service_in_files)			\
	$(ui_DATA)				\
	org.mate.atril.Daemon.service.in	\
	$(NULL)

#
# Clean up properly
#

CLEANFILES = \
	$(appdata_DATA)		\
	$(desktop_DATA)		\
	$(service_DATA)		\
	$(NULL)

DISTCLEANFILES = \
	$(appdata_in_files)	\
	$(NULL)

-include $(top_srcdir)/git.mk