blob: c1472cd794c75f4a0b320e8eb00c77229a37c58e (
plain) (
blame)
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
|
lz <ricotz@ubuntu.com> 2015-10-16 17:25:01 +0200
committer Rico Tzschichholz <ricotz@ubuntu.com> 2015-10-16 17:25:01 +0200
build: Let 'make dist' do a better job' href='/git-repos/torxchat.git/commit/data/icons/Makefile.am?h=feature/tor-i2p-dcc&id=b8e7dfa4baffa4378aee618d66ebfedaa285b235'>b8e7dfa4 ^
|
|
icon_DATA = hexchat.png
icondir = $(datadir)/icons/hicolor/48x48/apps
hicolor_DATA = hexchat.svg
hicolordir = $(datadir)/icons/hicolor/scalable/apps
UPDATE_ICON_CACHE = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor || :
install-data-hook:
$(UPDATE_ICON_CACHE);
uninstall-hook:
$(UPDATE_ICON_CACHE);
EXTRA_DIST = $(icon_DATA) $(hicolor_DATA)
|