~ubuntu-branches/ubuntu/maverick/backintime/maverick

« back to all changes in this revision

Viewing changes to common/Makefile.template

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Wiltshire
  • Date: 2009-05-16 23:04:32 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090516230432-orrutvtufbtuxsc6
Tags: 0.9.24-1
* New upstream version (closes: #527447):
  - backintime is no longer aware of 'backintime-gnome' and 'backintime-kde4'
    (you need run 'backintime-gnome' for GNOME version and 'backintime-kde4'
    for KDE4 version)
  - fix a bug that crashes the program after taking a snapshot
* Update homepage field in debian/control (closes: #527595)
* Refactor packaging to fit new upstream build system (an almost entire 
  re-write of debian/rules)
* Make configure scripts use /bin/sh instead of /bin/bash (they don't use
  bash features)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
PREFIX=/usr
 
2
DEST=$(DESTDIR)$(PREFIX)
 
3
 
 
4
all: build
 
5
 
 
6
build: translate
 
7
 
 
8
clean:
 
9
        rm po/*.mo
 
10
 
 
11
install: build install_translations
 
12
        #install python
 
13
        install -d $(DEST)/share/backintime/common
 
14
        install --mode=644 *.py $(DEST)/share/backintime/common
 
15
        
 
16
        #install plugin(s)
 
17
        install -d $(DEST)/share/backintime/plugins
 
18
        install --mode=644 ../plugins/usercallbackplugin.py $(DEST)/share/backintime/plugins
 
19
        
 
20
        #install copyright file
 
21
        install -d $(DEST)/share/doc/backintime-common
 
22
        install --mode=644 debian_specific/copyright $(DEST)/share/doc/backintime-common
 
23
        
 
24
        #install doc file(s)
 
25
        install -d $(DEST)/share/doc/backintime
 
26
        install --mode=644 ../AUTHORS $(DEST)/share/doc/backintime
 
27
        install --mode=644 ../LICENSE $(DEST)/share/doc/backintime
 
28
        install --mode=644 ../README $(DEST)/share/doc/backintime
 
29
        install --mode=644 ../TRANSLATIONS $(DEST)/share/doc/backintime
 
30
        install --mode=644 ../VERSION $(DEST)/share/doc/backintime
 
31
        install --mode=644 ../CHANGES $(DEST)/share/doc/backintime
 
32
        
 
33
        #install man file(s)
 
34
        install -d $(DEST)/share/man/man1
 
35
        install --mode=644 man/C/*.gz $(DEST)/share/man/man1
 
36
        
 
37
        #install application
 
38
        install -d $(DEST)/bin
 
39
        install backintime $(DEST)/bin
 
40