File: rules

package info (click to toggle)
backintime 1.0.36-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 3,284 kB
  • sloc: python: 10,536; sh: 444; xml: 157; makefile: 138
file content (35 lines) | stat: -rwxr-xr-x 1,055 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

override_dh_auto_clean:
	rm -rf locale common/po/*.mo
	find $(CURDIR) -name "*\.py[co]" -delete
	# these get regenerated
	rm -f */man/C/*.1.gz
	rm -f common/Makefile gnome/Makefile kde4/Makefile
	rm -f common/config-example-*.gz

override_dh_auto_configure:
	cd common && ./configure
	cd gnome && ./configure --no-check
	cd kde4 && ./configure --no-check 

override_dh_auto_install:
	cd common && DESTDIR=../debian/backintime-common $(MAKE) install
	rm -rf $(CURDIR)/debian/backintime-common/usr/share/doc/backintime-common
	rm -f $(CURDIR)/debian/backintime-common/usr/share/doc/backintime/LICENSE

	cd gnome && DESTDIR=../debian/backintime-gnome $(MAKE) install
	rm -rf $(CURDIR)/debian/backintime-gnome/usr/share/doc/backintime-gnome

	cd kde4 && DESTDIR=../debian/backintime-kde $(MAKE) install
	rm -rf $(CURDIR)/debian/backintime-kde/usr/share/doc/backintime-kde4

override_dh_python2:
	dh_python2 /usr/share/backintime/

%:
	dh --with python2 $@