~ubuntu-branches/ubuntu/utopic/leafpad/utopic

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Jari Aalto
  • Date: 2010-12-26 16:04:23 UTC
  • mfrom: (5.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20101226160423-x3dihuw6ca2hr3em
Tags: 0.8.17-4
* debian/control
  - (Standards-Version): Update to 3.9.1.
* debian/leafpad.1.pod
  - (DESCRIPTION): Add warning about undefined locales and data loss
* debian/patches
  - (30): New. Fix saving with in UTF16 encoding.
    Patch thanks to Alex <davian818@gmail.com>.
    (Grave; Closes: #606145).
* debian/rules
  - Simplify targets for dh(1).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
2
 
3
 
# export DH_VERBOSE=1
4
 
 
5
3
PACKAGE = leafpad
6
4
 
7
5
man:
11
9
        # Do not run tests. It would consider Quilt .pc/ directory as
12
10
        # a part of translation POTFILES.
13
11
 
14
 
install: build man
15
 
        # target: install
16
 
        dh_testdir
17
 
        dh_testroot
18
 
        dh_prep
19
 
        dh_installdirs
 
12
override_dh_auto_instakk:
20
13
        $(MAKE) install DESTDIR=$(CURDIR)/debian/$(PACKAGE)
21
14
 
22
 
binary-arch: install man
23
 
        # target: binary-arch -- Build architecture-dependent files
24
 
        dh_testdir
25
 
        dh_testroot
26
 
        dh_installdocs
27
 
        dh_installexamples
28
 
        dh_installmenu
 
15
override_dh_installman: man
29
16
        dh_installman
30
 
        dh_installchangelogs
31
 
        dh_link
32
 
        dh_strip
33
 
        dh_compress
34
 
        dh_fixperms
35
 
        dh_makeshlibs
36
 
        dh_installdeb
37
 
        dh_shlibdeps
38
 
        dh_gencontrol
39
 
        dh_md5sums
40
 
        dh_builddeb
41
 
 
42
 
binary: binary-arch
43
17
 
44
18
%:
45
19
        dh $@
46
20
 
47
 
.PHONY: man binary binary-arch install
 
21
.PHONY: man
48
22
 
49
23
# End of file