~ubuntu-branches/ubuntu/trusty/pdfmod/trusty

« back to all changes in this revision

Viewing changes to data/icons/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-06-18 03:44:46 UTC
  • Revision ID: james.westby@ubuntu.com-20100618034446-bogifrsscpayp361
Tags: upstream-0.8.3
ImportĀ upstreamĀ versionĀ 0.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
theme = hicolor
 
2
themedir = $(datadir)/icons/$(theme)
 
3
theme_icons = \
 
4
        apps,pdfmod-16.png \
 
5
        apps,pdfmod-22.png \
 
6
        apps,pdfmod-24.png \
 
7
        apps,pdfmod-32.png \
 
8
        apps,pdfmod-256.png \
 
9
        apps,pdfmod.svg
 
10
 
 
11
install_icon_exec = $(top_srcdir)/icon-theme-installer \
 
12
        -t "$(theme)" \
 
13
        -s "$(srcdir)" \
 
14
        -d "x$(DESTDIR)" \
 
15
        -b "$(themedir)" \
 
16
        -m "$(mkinstalldirs)" \
 
17
        -x "$(INSTALL_DATA)"
 
18
 
 
19
install-data-local:
 
20
        @-$(install_icon_exec) -i $(theme_icons)
 
21
 
 
22
uninstall-hook: 
 
23
        @-$(install_icon_exec) -u $(theme_icons)
 
24
        
 
25
MAINTAINERCLEANFILES = Makefile.in
 
26
EXTRA_DIST = $(wildcard *.png *.svg)
 
27