]> git.madduck.net Git - code/myrepos.git/blob - debian/rules

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

f43c64ce9ad3c2a56688dad9b1a5c9a0baa5d44f
[code/myrepos.git] / debian / rules
1 #!/usr/bin/make -f
2
3 build:
4         pod2man -c mr mr > mr.1
5         ./mr ed | grep -q "horse"
6
7 clean:
8         dh_testdir
9         dh_testroot
10         dh_clean mr.1
11
12 binary-arch: build
13
14 binary-indep: build
15         dh_testdir
16         dh_testroot
17         dh_clean -k
18         dh_install mr usr/bin
19         dh_installdocs README TODO
20         dh_installexamples mrconfig mrconfig.complex
21         dh_installman *.1
22         dh_installchangelogs
23         dh_compress
24         dh_fixperms
25         dh_perl
26         dh_installdeb
27         dh_gencontrol
28         dh_md5sums
29         dh_builddeb
30
31 # Not intended for use by anyone except the author.
32 announcedir:
33         @echo ${HOME}/src/joeywiki/code/mr/news
34
35 binary: binary-indep binary-arch
36 .PHONY: build clean binary-indep binary-arch binary