1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
export DH_VERBOSE=1
%:
dh $@ --with python3 --buildsystem=pybuild
override_dh_auto_build:
dh_auto_build
cd docs/help && make html
override_dh_installdocs:
rm debian/photofilmstrip/usr/share/doc/photofilmstrip/html/_static/jquery.js
ln -s /usr/share/javascript/jquery/jquery.js debian/photofilmstrip/usr/share/doc/photofilmstrip/html/_static/jquery.js
rm debian/photofilmstrip/usr/share/doc/photofilmstrip/html/_static/underscore.js
ln -s /usr/share/javascript/underscore/underscore.js debian/photofilmstrip/usr/share/doc/photofilmstrip/html/_static/underscore.js
dh_installdocs
|