~ubuntu-branches/ubuntu/karmic/gnustep-icons/karmic

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Gürkan Sengün
  • Date: 2004-02-10 17:18:04 UTC
  • Revision ID: james.westby@ubuntu.com-20040210171804-pu42ygslolwfuz8e
Tags: 1.0-3
* Changed my name to UTF-8 in debian/{changelog,copyright,control}
* Updated Standards-Version to 3.6.1.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# stolen from wmaker-data, by G�rkan Seng�n.
 
3
#
 
4
# Made with the aid of debmake, by Christoph Lameter,
 
5
# based on the sample debian/rules file for GNU hello by Ian Jackson.
 
6
 
 
7
package := gnustep-icons
 
8
instdir := usr/share/icons
 
9
 
 
10
export DH_COMPAT=4
 
11
 
 
12
build:
 
13
        dh_testdir
 
14
        touch build
 
15
 
 
16
clean:
 
17
        dh_testdir
 
18
        dh_testroot
 
19
        -rm -f build
 
20
#       -rm -rf `find . -name "*~" -o -name ".xvpics"`
 
21
        dh_clean
 
22
 
 
23
binary-indep: build
 
24
        dh_testdir -i
 
25
        dh_testroot
 
26
        dh_clean -i -k
 
27
        dh_installdirs -i
 
28
        find . -path "./debian" -prune -o -type f -name "*.tiff" -exec cp {} debian/$(package)/$(instdir) \;
 
29
#       cd debian/$(package)/$(instdir) && \
 
30
#         for icon in * ; do \
 
31
#           mv $$icon wmaker-$$icon ; \
 
32
#          done
 
33
        dh_installdocs -i
 
34
        dh_installchangelogs -i
 
35
        dh_compress -i
 
36
        dh_fixperms -i
 
37
        dh_installdeb -i
 
38
        dh_gencontrol -i -u-isp
 
39
        dh_md5sums -i
 
40
        dh_builddeb -i
 
41
 
 
42
binary-arch: build
 
43
#       dh_testdir
 
44
#       dh_testroot
 
45
 
 
46
binary:         binary-indep binary-arch
 
47
 
 
48
.PHONY: binary binary-arch binary-indep clean