Mercurial > mplayer.hg
annotate debian/rules @ 1659:6b71bbf515e4
num_elementary_packets1xx reset
author | arpi |
---|---|
date | Thu, 23 Aug 2001 13:20:25 +0000 |
parents | 6185549842e7 |
children | 6a227dc19dec |
rev | line source |
---|---|
18 | 1 #!/usr/bin/make -f |
2 # Made with the aid of debmake, by Christoph Lameter, | |
3 # based on the sample debian/rules file for GNU hello by Ian Jackson. | |
1397 | 4 #export DH_VERBOSE=1 |
5 # This is the debhelper compatability version to use. | |
6 export DH_COMPAT=1 | |
18 | 7 |
8 package=mplayer | |
9 | |
1397 | 10 configure: configure-stamp |
11 configure-stamp: | |
12 dh_testdir | |
13 # Add here commands to configure the package. | |
18 | 14 $(checkdir) |
821 | 15 ./configure --prefix=/usr |
1397 | 16 |
17 touch configure-stamp | |
18 | |
19 build: configure-stamp build-stamp | |
20 build-stamp: | |
21 dh_testdir | |
22 | |
23 # Add here commands to compile the package. | |
24 #$(MAKE) | |
25 #/usr/bin/docbook-to-man debian/etherconf.sgml > etherconf.1 | |
1634
3249bbc48bf9
Changes to debian packaging based on patches by Josip Rodin (joy debian org)
eyck
parents:
1397
diff
changeset
|
26 ${MAKE} mplayer |
1397 | 27 |
28 touch build-stamp | |
18 | 29 |
30 clean: | |
1397 | 31 dh_testdir |
32 dh_testroot | |
33 rm -f build-stamp configure-stamp | |
18 | 34 |
1397 | 35 # Add here commands to clean up after the build process. |
36 #-$(MAKE) clean | |
37 # $(checkdir) | |
38 # -rm -f build | |
39 # -$(MAKE) distclean | |
40 # -rm -f `find . -name "*~"` | |
41 # -rm -rf debian/tmp debian/files* core debian/substvars | |
42 dh_clean | |
18 | 43 |
845
29a3f57d5e1d
spellcheck, start of integration with debian menu system, /etc/mplayer.conf
eyck
parents:
821
diff
changeset
|
44 |
29a3f57d5e1d
spellcheck, start of integration with debian menu system, /etc/mplayer.conf
eyck
parents:
821
diff
changeset
|
45 |
1397 | 46 install: build |
47 dh_testdir | |
48 dh_testroot | |
49 dh_clean -k | |
50 dh_installdirs | |
51 | |
52 # Add here commands to install the package into debian/<packagename> | |
53 # $(MAKE) prefix=`pwd`/debian/`dh_listpackages`/usr install | |
1634
3249bbc48bf9
Changes to debian packaging based on patches by Josip Rodin (joy debian org)
eyck
parents:
1397
diff
changeset
|
54 $(MAKE) install prefix=$(CURDIR)/debian/tmp/usr |
845
29a3f57d5e1d
spellcheck, start of integration with debian menu system, /etc/mplayer.conf
eyck
parents:
821
diff
changeset
|
55 |
1397 | 56 # Build architecture-independent files here. |
57 binary-indep: build install | |
58 # We have nothing to do by default. | |
59 | |
60 | |
61 # Build architecture-dependent files here. | |
62 binary-arch: build install | |
63 dh_testdir | |
64 dh_testroot | |
65 dh_installdebconf | |
1634
3249bbc48bf9
Changes to debian packaging based on patches by Josip Rodin (joy debian org)
eyck
parents:
1397
diff
changeset
|
66 dh_installdocs DOCS/* |
1397 | 67 dh_installexamples |
68 dh_installmenu | |
69 # dh_installlogrotate | |
70 # dh_installemacsen | |
71 # dh_installpam | |
72 # dh_installmime | |
73 # dh_installinit | |
74 # dh_installcron | |
75 dh_installman | |
76 dh_installinfo | |
77 # dh_undocumented | |
78 dh_installchangelogs | |
79 dh_link | |
80 dh_strip | |
81 dh_compress | |
82 dh_fixperms | |
83 # dh_makeshlibs | |
84 dh_installdeb | |
85 dh_perl | |
86 dh_shlibdeps | |
87 dh_gencontrol | |
88 dh_md5sums | |
89 dh_builddeb | |
90 | |
91 | |
92 | |
93 #binary-arch: checkroot build | |
94 # $(checkdir) | |
95 # -rm -rf debian/tmp | |
96 # install -d debian/tmp | |
97 # cd debian/tmp && install -d `cat ../dirs` | |
98 | |
845
29a3f57d5e1d
spellcheck, start of integration with debian menu system, /etc/mplayer.conf
eyck
parents:
821
diff
changeset
|
99 |
18 | 100 # Must have debmake installed for this to work. Otherwise please copy |
101 # /usr/bin/debstd into the debian directory and change debstd to debian/debstd | |
1397 | 102 # debstd |
103 # dpkg-gencontrol -isp | |
104 # chown -R root.root debian/tmp | |
105 # chmod -R go=rX debian/tmp | |
106 # dpkg --build debian/tmp .. | |
18 | 107 |
108 binary: binary-indep binary-arch | |
109 | |
110 .PHONY: binary binary-arch binary-indep clean checkroot |