1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#!/usr/bin/make -f
#DH_VERBOSE = 1
export PYBUILD_NAME=alabaster
# main packaging script based on dh7 syntax
%:
dh $@ --with python3 --buildsystem=pybuild
# To support python2.7 and python3, there are 2 ways to package:
# * packaging with --buildsystem=pybuild (jessie and later)
# https://wiki.debian.org/Python/Pybuild
# https://wiki.debian.org/Python/LibraryStyleGuide
#
# * packaging without --buildsystem=pybuild (wheezy)
# https://wiki.debian.org/Python/AppStyleGuide
#
|