~gilir/elementaryicons/ubuntu-2.7

« back to all changes in this revision

Viewing changes to elementary-icon-theme/debian/rules

  • Committer: Andrew Starr-Bochicchio
  • Date: 2009-11-17 01:14:55 UTC
  • Revision ID: a.starr.b@gmail.com-20091117011455-n3msilamyao7wk80
Move debian to root dir

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/make -f
2
 
 
3
 
build: build-stamp
4
 
build-stamp:
5
 
        dh build
6
 
        touch $@
7
 
 
8
 
install: install-stamp
9
 
install-stamp: build
10
 
        dh install
11
 
        for d in $$(find $(CURDIR)/debian/elementary-icon-theme/usr/share/icons -mindepth 2 -maxdepth 2 -type d) ; do \
12
 
                (cd $$d; for c in *; do /usr/lib/icon-naming-utils/icon-name-mapping -c $$c; done); \
13
 
        done
14
 
        touch $@
15
 
 
16
 
binary: binary-arch binary-indep
17
 
binary-arch: install
18
 
        dh $@
19
 
 
20
 
binary-indep: install
21
 
        dh $@
22
 
 
23
 
clean:
24
 
        dh $@
25
 
 
26
 
PHONY: binary-arch binary-indep clean binary build install
27