~ubuntu-branches/ubuntu/trusty/musiclibrarian/trusty

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese
  • Date: 2008-02-12 22:36:16 UTC
  • mfrom: (3.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080212223616-smcqyhbtxq6h7smw
Tags: 1.6-2.1
* Non-maintainer upload.
* Bump versioned build-deps for debhelper and python-central.
* XS-Python-Version: all. (Closes: #445399).
* Add Copyright holder to debian/copyright.
  + Link to GPL-2.
* Add Homepage field.
  + Remove upstream URL from package description.
* Bump compat to 5 to match debhelper build-dep.
* Bump Standards Version to 3.7.3.
  + Menu policy transition.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
clean:
12
12
        dh_testdir
13
13
        dh_testroot
 
14
 
 
15
        python setup.py clean
 
16
 
 
17
        rm -rf build
14
18
        rm -f build-stamp configure-stamp
15
19
 
16
20
        dh_clean 
21
25
install:
22
26
        dh_testdir
23
27
        dh_testroot
24
 
        dh_clean -k 
25
 
        dh_installdirs
26
28
 
27
 
        ./setup.py install --no-compile --prefix=$(CURDIR)/debian/musiclibrarian/usr
 
29
        python ./setup.py install --no-compile --prefix=$(CURDIR)/debian/musiclibrarian/usr
28
30
 
29
31
binary-indep: install
30
32
        dh_testdir
31
 
        dh_installdirs
32
33
        dh_testroot
33
34
        dh_installchangelogs 
34
35
        dh_installdocs
38
39
        dh_strip
39
40
        dh_compress
40
41
        dh_fixperms
41
 
        dh_python
 
42
        dh_pycentral
 
43
        rm -rf $(CURDIR)/debian/musiclibrarian/usr/lib
42
44
        dh_installdeb
43
45
        dh_shlibdeps
44
46
        dh_gencontrol
45
47
        dh_md5sums
46
48
        dh_builddeb
47
49
 
 
50
binary-arch:
 
51
 
48
52
binary: binary-indep
49
53
.PHONY: clean binary-indep binary install build