File: rules

package info (click to toggle)
actdiag 3.0.0%2Bdfsg1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 288 kB
  • sloc: python: 1,281; makefile: 15
file content (25 lines) | stat: -rwxr-xr-x 884 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
#!/usr/bin/make -f
# -*- makefile -*-

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

export PYBUILD_NAME=actdiag
ifneq (,$(PYBUILD_AUTOPKGTEST))
# pybuild doesn't copy src/$module/tests - use the installed copy instead
export PYBUILD_BEFORE_TEST:=ln -s /usr/lib/python3/dist-packages/${PYBUILD_NAME}/tests {build_dir}/tests
export PYBUILD_AFTER_TEST:=rm -rf {build_dir}/tests
endif

%:
	dh $@ --buildsystem=pybuild

override_dh_python3:
	dh_python3
	mv -f $(CURDIR)/debian/python3-actdiag/usr/bin/actdiag $(CURDIR)/debian/python3-actdiag/usr/bin/actdiag3

convert_manpage_actdiag3:
	sed 's/^actdiag \\/actdiag3 \\/' $(CURDIR)/actdiag.1 > $(CURDIR)/debian/actdiag3.1
	sed -i 's/.B actdiag/.B actdiag3/g' $(CURDIR)/debian/actdiag3.1
	sed -i 's/.TH ACTDIAG /.TH ACTDIAG3 /' $(CURDIR)/debian/actdiag3.1
	sed -i 's/^\\fBactdiag/\\fBactdiag3/' $(CURDIR)/debian/actdiag3.1