1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#!/usr/bin/make -f
export LC_ALL=C
%:
dh $@ --buildsystem=pybuild
execute_after_dh_install:
# fasta.nin files will be (re)build at package installation time to not
# contain build path. Other fasta.* are rebuilt by makeblastdb and may
# cause inconsistencies in the package itself when makeblastdb is
# upgraded and changes format, e.g. during a major operating system
# upgrade. See Bug#1036743.
find debian -name "*.fasta.nin" -delete
find debian -name "*.fasta.njs" -delete
find debian -name "*.fasta.ndb" -delete
find debian -name "*.fasta.ntf" -delete
execute_after_dh_fixperms:
find debian -name "*.msh" -exec chmod -x \{\} \;
|