~ubuntu-branches/ubuntu/hardy/hypermail/hardy

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Jan Christoph Nordholz
  • Date: 2007-11-26 23:06:37 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20071126230637-duqhrk8bq2177fk7
Tags: 2.2.0.dfsg-1
* The helper tools in archive/ were found to be under DFSG-
  incompatible licensing terms. Create a reduced orig tarball 
  and replace them with their functional equivalents from contrib/.
  (One of them is a python script, so introduce python as new
  dependency.)
* Collect the conglomeration of different licenses in
  debian/copyright.
* Heed DEB_BUILD_OPTIONS=nostrip. Closes: #437183.
* Clean up debian/rules and debian/changelog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
 
# Sample debian/rules that uses debhelper.
3
 
# GNU copyright 1997 to 1999 by Joey Hess.
4
 
 
5
 
# Uncomment this to turn on verbose mode.
6
 
#export DH_VERBOSE=1
7
 
 
8
 
# This is the debhelper compatability version to use.
9
 
export DH_COMPAT=5
10
2
 
11
3
.PHONY: build clean binary-indep binary-arch binary install
12
4
 
21
13
        dh_testdir
22
14
        dh_testroot
23
15
        rm -f build-stamp
24
 
        -$(MAKE) clobber
 
16
        ! test -f Makefile || $(MAKE) clobber
25
17
        dh_clean
26
18
        rm -f docs/hmrc.5
27
19
 
41
33
        dh_testroot
42
34
        dh_installdocs
43
35
        dh_installmenu
44
 
        # quirk to rectify the manpage section until upstream has reacted
45
36
        cp docs/hmrc.4 docs/hmrc.5
46
37
        dh_installman docs/hmrc.5 docs/hypermail.1  
47
38
        dh_installchangelogs Changelog
54
45
        dh_gencontrol
55
46
        dh_md5sums
56
47
        dh_builddeb
57