14 lines
215 B
Makefile
Executable File
14 lines
215 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
# export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@ --buildsystem python_distutils --with python2
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install
|
|
|
|
override_dh_python2:
|
|
|
|
dh_python2 --no-guessing-deps
|