9 |
# Uncomment this to turn on verbose mode. |
# Uncomment this to turn on verbose mode. |
10 |
#export DH_VERBOSE=1 |
#export DH_VERBOSE=1 |
11 |
|
|
|
|
|
12 |
configure: configure-stamp |
configure: configure-stamp |
13 |
|
|
14 |
configure-stamp: patch |
configure-stamp: patch |
15 |
dh_testdir |
dh_testdir |
|
# Add here commands to configure the package. |
|
|
|
|
16 |
touch configure-stamp |
touch configure-stamp |
17 |
|
|
18 |
build: build-stamp |
build: build-stamp |
19 |
|
|
20 |
build-stamp: configure-stamp |
build-stamp: configure-stamp |
21 |
dh_testdir |
dh_testdir |
|
|
|
|
# Add here commands to compile the package. |
|
|
|
|
22 |
touch build-stamp |
touch build-stamp |
23 |
|
|
24 |
clean: unpatch |
clean: unpatch |
25 |
dh_testdir |
dh_testdir |
26 |
dh_testroot |
dh_testroot |
27 |
rm -f build-stamp configure-stamp |
rm -f build-stamp configure-stamp |
|
|
|
|
# Add here commands to clean up after the build process. |
|
|
|
|
28 |
dh_clean |
dh_clean |
29 |
|
|
30 |
patch: patch-stamp |
patch: patch-stamp |
31 |
patch-stamp: |
patch-stamp: |
32 |
dpatch apply-all |
dpatch apply-all |
|
# dpatch call-all -a=pkg-info >patch-stamp |
|
33 |
touch patch-stamp |
touch patch-stamp |
34 |
|
|
|
|
|
35 |
unpatch: |
unpatch: |
36 |
dpatch deapply-all |
dpatch deapply-all |
37 |
rm -rf patch-stamp debian/patched |
rm -rf patch-stamp debian/patched |
38 |
|
|
|
|
|
39 |
install: build |
install: build |
40 |
dh_testdir |
dh_testdir |
41 |
dh_testroot |
dh_testroot |
42 |
dh_clean -k |
dh_clean -k |
43 |
dh_installdirs |
dh_installdirs |
44 |
|
|
|
# Add here commands to install the package into debian/quickappoint. |
|
|
|
|
45 |
# Lintian overrides |
# Lintian overrides |
46 |
install -m 644 $(CURDIR)/debian/lintian.overrides \ |
install -m 644 $(CURDIR)/debian/lintian.overrides \ |
47 |
$(CURDIR)/debian/quickappoint/usr/share/lintian/overrides/quickappoint |
$(CURDIR)/debian/quickappoint/usr/share/lintian/overrides/quickappoint |
51 |
|
|
52 |
# Build architecture-independent files here. |
# Build architecture-independent files here. |
53 |
binary-indep: build install |
binary-indep: build install |
|
# We have nothing to do by default. |
|
|
|
|
|
# Build architecture-dependent files here. |
|
|
binary-arch: build install |
|
54 |
dh_testdir |
dh_testdir |
55 |
dh_testroot |
dh_testroot |
56 |
dh_installchangelogs |
dh_installchangelogs |
57 |
dh_installdocs |
dh_installdocs |
|
# dh_installexamples |
|
58 |
dh_install |
dh_install |
|
# dh_installmenu |
|
59 |
dh_installdebconf |
dh_installdebconf |
|
# dh_installlogrotate |
|
|
# dh_installemacsen |
|
|
# dh_installpam |
|
|
# dh_installmime |
|
|
# dh_installinit |
|
|
# dh_installcron |
|
|
# dh_installinfo |
|
60 |
dh_installman |
dh_installman |
|
# dh_link |
|
|
# dh_strip |
|
61 |
dh_compress |
dh_compress |
62 |
dh_fixperms |
dh_fixperms |
|
# dh_perl |
|
|
# dh_python |
|
|
# dh_makeshlibs |
|
63 |
dh_installdeb |
dh_installdeb |
64 |
dh_shlibdeps |
dh_shlibdeps |
65 |
dh_gencontrol |
dh_gencontrol |
66 |
dh_md5sums |
dh_md5sums |
67 |
dh_builddeb |
dh_builddeb |
68 |
|
|
69 |
|
# Build architecture-dependent files here. |
70 |
|
binary-arch: build install |
71 |
|
# We have nothing to do by default. |
72 |
|
|
73 |
binary: binary-indep binary-arch |
binary: binary-indep binary-arch |
74 |
.PHONY: build clean binary-indep binary-arch binary install configure |
.PHONY: build clean binary-indep binary-arch binary install configure |