blob: b766de66645d13af1d948378994d2da2902c29fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/make -f
export PYBUILD_NAME = markupsafe
export PYBUILD_AFTER_INSTALL = rm -f {destdir}{install_dir}/markupsafe/_speedups.c
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@ --buildsystem=pybuild
override_dh_compress-indep:
dh_compress -a -X.py
|