File: rules

package info (click to toggle)
dtc 0.35.5-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 18,824 kB
  • sloc: php: 50,739; sh: 8,596; makefile: 572; perl: 148; xml: 25
file content (61 lines) | stat: -rwxr-xr-x 1,416 bytes parent folder | download
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/make -f

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

build: build-arch build-indep
build-arch: build-stamp
build-indep: build-stamp
build-stamp:

clean:
	dh_testdir
	dh_testroot
	dh_clean
	$(MAKE) clean

	# As per advice from Christian Perrier
	# debconf-updatepo
	# For new strings, run:
	# debconf-gettextize debian/dtc-common.templates --merge

install:
	dh_testdir
	dh_testroot
	dh_prep

	dh_installdirs

	$(MAKE) install-dtc-common DESTDIR=$(CURDIR)/debian/dtc-common
	rm -f $(CURDIR)/debian/dtc-common/usr/share/doc/dtc/LICENSE.gz
	rm -f $(CURDIR)/debian/dtc-common/usr/share/doc/dtc/README.gentoo
	# The Debian package of DTC now depends on the libphp-nusoap
	# package, so we don't need to include the lib file in this Debian
	# package now.
	rm -f $(CURDIR)/debian/dtc-common/usr/share/dtc/shared/inc/nusoap.php

	# Install the doc-base control file
	install -D -m 0644 debian/docbase $(CURDIR)/debian/dtc-common/usr/share/doc-base/dtc-doc

	$(MAKE) install-dtc-stats-daemon DESTDIR=$(CURDIR)/debian/dtc-stats-daemon

binary-indep: install
	dh_testdir
	dh_testroot
	dh_installchangelogs doc/changelog
	dh_install
	dh_installdocs
	dh_installman
	dh_installdebconf
	dh_installinit
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary-arch: install

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install