~ubuntu-branches/ubuntu/lucid/luciole/lucid

« back to all changes in this revision

Viewing changes to debian/rules.debdiff

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2009-11-29 07:45:40 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20091129074540-4693pedz7eiau34m
Tags: 0.7.4-0ubuntu1
* New upstream release.
  - Fix "Luciole does not allow to overwrite a video file during export"
    (LP: #485197)
  - Fix "Luciole export on DV format does not work under karmic" (LP: #486963)
* debian/watch: fixed to take into account - or _ in the source tarball
* debian/control: added Homepage tag

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# -*- makefile -*-
 
3
 
 
4
include /usr/share/quilt/quilt.make
 
5
 
 
6
DEB_INSTALL_MANPAGES_LUCIOLE = luciole.1
 
7
 
 
8
build: patch build-stamp
 
9
 
 
10
build-stamp:
 
11
        dh_testdir
 
12
        $(MAKE)
 
13
        pod2man --section=1 --center "" debian/luciole.pod luciole.1
 
14
        touch $@
 
15
 
 
16
clean: unpatch
 
17
        dh_testdir
 
18
        dh_testroot
 
19
        rm -f build-stamp configure-stamp
 
20
 
 
21
        rm -f luciole.1
 
22
        $(MAKE) clean
 
23
 
 
24
        dh_clean 
 
25
 
 
26
install: build
 
27
        dh_testdir
 
28
        dh_testroot
 
29
        dh_clean -k 
 
30
        dh_installdirs
 
31
 
 
32
        $(MAKE) install DESTDIR=$(CURDIR)/debian/luciole
 
33
 
 
34
binary-arch: build install
 
35
        dh_testdir
 
36
        dh_testroot
 
37
        dh_installchangelogs 
 
38
        dh_installdocs
 
39
        dh_installman luciole.1
 
40
        dh_compress
 
41
        dh_fixperms
 
42
        dh_installdeb
 
43
        dh_shlibdeps
 
44
        dh_gencontrol
 
45
        dh_md5sums
 
46
        dh_builddeb
 
47
 
 
48
binary: binary-indep binary-arch
 
49
.PHONY: build clean binary-indep binary-arch binary install configure