~gilir/elementaryicons/ubuntu-2.7

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Andrew Starr-Bochicchio
  • Date: 2009-11-17 01:18:33 UTC
  • Revision ID: a.starr.b@gmail.com-20091117011833-3uf18shexh2l8rl0
Really 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