~ubuntu-branches/ubuntu/utopic/mplayer-skins/utopic

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2005-12-08 20:46:50 UTC
  • Revision ID: james.westby@ubuntu.com-20051208204650-m6svhyq2ofmjljzy
Tags: 2-3
don't conflict, just Replace the old mplayer packages

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
clean::
 
3
        dh_testdir
 
4
        dh_clean
 
5
        rm -rf debian/tmp 
 
6
 
 
7
d:=debian/mplayer-skins/usr/share/mplayer/Skin
 
8
 
 
9
install:
 
10
        mkdir -p $(d)
 
11
        for s in *.tar.bz2; do tar xvj -C $(d) -f $$s ; done
 
12
        dh_link usr/share/mplayer/Skin/clearplayer usr/share/mplayer/Skin/default
 
13
 
 
14
binary-indep: install
 
15
        dh_testdir
 
16
        dh_testroot
 
17
        dh_installdocs
 
18
        dh_installchangelogs
 
19
        dh_compress
 
20
        dh_fixperms
 
21
        dh_installdeb
 
22
        dh_gencontrol
 
23
        dh_md5sums
 
24
        dh_builddeb
 
25
 
 
26
binary-arch:
 
27
        # nothing to do
 
28
 
 
29
binary: binary-indep binary-arch
 
30
.PHONY: build clean binary-indep binary-arch binary