~audio-recorder/audio-recorder/trunk

1 by Osmo Antero Maatta
Initial import 17.jan.2011
1
# The audio-recorder-X-small.png files are button images in the GUI.
2
# The audio-recorder-X.png are icons for the GtkStatusIcon class (system tray icons in older GNOME 2.x).
3
pixmapsdir = $(datadir)/pixmaps/audio-recorder
4
pixmaps_DATA = \
5
	audio-recorder-on.png \
6
	audio-recorder-on-small.png \
7
	audio-recorder-off.png \
8
	audio-recorder-off-small.png \
9
	audio-recorder-paused.png \
10
	audio-recorder-paused-small.png
11
12
deviceiconsdir = $(datadir)/icons/hicolor/22x22/devices
13
deviceicons_DATA =
14
15
# Ref: http://library.gnome.org/devel/integration-guide/stable/icons.html.en
16
# These are icons for the AppIndicator class (new system tray icons in Unity and GNOME 3.x).
17
appicondir = $(datadir)/icons/hicolor/48x48/apps
18
appicon_DATA = audio-recorder-on.png \
19
               audio-recorder-off.png \
20
               audio-recorder-paused.png \
21
               audio-recorder.png
22
23
# Update icon cache
24
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor/48x48/apps
25
26
EXTRA_DIST = \
27
	$(pixmaps_DATA) \
28
	$(deviceicons_DATA) \
29
	$(appicon_DATA)
30