~audio-recorder/audio-recorder/trunk

« back to all changes in this revision

Viewing changes to pixmaps/Makefile.am

  • Committer: Osmo Antero Maatta
  • Date: 2011-01-17 08:09:50 UTC
  • Revision ID: osmoma@gmail.com-20110117080950-4cbm2fnnsr0332jw
InitialĀ importĀ 17.jan.2011

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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