~ubuntu-branches/debian/experimental/backintime/experimental

« back to all changes in this revision

Viewing changes to kde4/Makefile.template

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Wiltshire
  • Date: 2010-12-03 21:56:53 UTC
  • mfrom: (1.2.1 upstream) (3.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20101203215653-scx9roloq4m0dqns
Tags: 1.0.4-1
* New upstream release
    Closes: #555293
    LP: #409130 #507246 #528518 #534829 #522618
* Update debian/copyright
* The following patches are either integrated or fixed properly
  upstream: no-chmod-777.patch allow-root-backup.patch
* Refactor remaining patches and make the headers DEP-3 compliant
* Convert to source format 3.0 (quilt) and drop quilt dependency and
  logic
* Don't depend on a specific version of Python; let dh_python choose
  the best option
* Remove the "earlier-than" restriction for the Conflicts on
  backintime-kde4
* Standards version 3.9.1 (no changes required)
* Update my email address

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
PREFIX=/usr
 
2
DEST=$(DESTDIR)$(PREFIX)
 
3
 
 
4
all:
 
5
 
 
6
clean:
 
7
        rm po/*.mo
 
8
 
 
9
install:
 
10
        #install python
 
11
        install -d $(DEST)/share/backintime/kde4
 
12
        install --mode=644 *.py $(DEST)/share/backintime/kde4
 
13
        
 
14
        #install plugin
 
15
        install -d $(DEST)/share/backintime/plugins
 
16
        install --mode=644 plugins/*.py $(DEST)/share/backintime/plugins
 
17
        
 
18
        #install application
 
19
        install -d $(DEST)/bin
 
20
        install backintime-kde4 $(DEST)/bin
 
21
        
 
22
        #install copyright file
 
23
        install -d $(DEST)/share/doc/backintime-kde4
 
24
        install --mode=644 ../common/debian_specific/copyright $(DEST)/share/doc/backintime-kde4
 
25
        
 
26
        #install .desktop file(s)
 
27
        install -d $(DEST)/share/applications/kde4
 
28
        install --mode=644 *.desktop $(DEST)/share/applications/kde4
 
29
        
 
30
        #install docbook
 
31
        install -d $(DEST)/share/doc/kde4/HTML/en/backintime/figures
 
32
        install --mode=644 docbook/en/*.docbook $(DEST)/share/doc/kde4/HTML/en/backintime
 
33
        #install --mode=644 docbook/en/figures/*.png $(DEST)/share/doc/kde4/HTML/en/backintime/figures
 
34