1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1
export PYBUILD_NAME=unidiff
%:
dh $@ --with python3 --buildsystem=pybuild
# TODO: we could link these back to /usr/bin/unidiff via update-alternatives,
# but meh effort, and probably nobody will use them anyway.
override_dh_install:
dh_install
mv debian/python3-unidiff/usr/bin/unidiff debian/python3-unidiff/usr/bin/python3-unidiff
|