File: rules

package info (click to toggle)
kleborate 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 147,988 kB
  • sloc: python: 3,246; sh: 73; makefile: 9
file content (15 lines) | stat: -rwxr-xr-x 337 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/make -f

export LC_ALL=C

%:
	dh $@ --with python3 --buildsystem=pybuild

override_dh_install:
	dh_install
	# fasta.nin files will be (re)build at package installation time to not contain build path
	find debian -name "*.fasta.nin" -delete

override_dh_fixperms:
	dh_fixperms
	find debian -name "*.msh" -exec chmod -x \{\} \;