~ubuntu-art-pkg/ubuntu-themes/17.10

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Kenneth Wimer
  • Date: 2010-03-05 15:40:25 UTC
  • Revision ID: kwwii@clive-20100305154025-2gpwbs97qgwxd45p
* Update by Kenneth Wimer to fix some other issue
* Update by Kenneth Wimer to fix a warning in the ambiance gtkrc and the 
  slider color in the radiance theme
* Use the correct theme names in the indexes too
* Initial Ubuntu Upload
[ Kenneth Wimer ]
[ Martin Pitt ]
* debian/rules:
  - dh7 usage cleaning

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
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
 
        touch $@
12
 
 
13
 
binary: binary-arch binary-indep
14
 
binary-arch: install
15
 
        dh $@ --priority=90
16
 
 
17
 
binary-indep: install
18
 
        dh $@ --priority=90
19
 
 
20
 
clean:
 
3
%:
21
4
        dh $@
22
5
 
23
 
PHONY: binary-arch binary-indep clean binary build install
 
6
override_dh_gconf:
 
7
        dh_gconf --priority=90
24
8