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
|
# The audio-recorder-X-small.png files are button images in the GUI.
# The audio-recorder-X.png are icons for the GtkStatusIcon class (system tray icons in older GNOME 2.x).
pixmapsdir = $(datadir)/pixmaps/audio-recorder
pixmaps_DATA = \
audio-recorder-on.png \
audio-recorder-on-small.png \
audio-recorder-off.png \
audio-recorder-off-small.png \
audio-recorder-paused.png \
audio-recorder-paused-small.png
deviceiconsdir = $(datadir)/icons/hicolor/22x22/devices
deviceicons_DATA =
# Ref: http://library.gnome.org/devel/integration-guide/stable/icons.html.en
# These are icons for the AppIndicator class (new system tray icons in Unity and GNOME 3.x).
appicondir = $(datadir)/icons/hicolor/48x48/apps
appicon_DATA = audio-recorder-on.png \
audio-recorder-off.png \
audio-recorder-paused.png \
audio-recorder.png
# Update icon cache
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor/48x48/apps
EXTRA_DIST = \
$(pixmaps_DATA) \
$(deviceicons_DATA) \
$(appicon_DATA)
|