1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/make -f
# -*- makefile -*-
#export DH_VERBOSE=1
override_dh_auto_configure:
dh_auto_configure -- -DWITH_OCLFFT=OFF -DWITH_CONTRIB=ON
%:
dh $@ --with sphinxdoc
override_dh_install:
# ufo-filters
dh_install -p ufo-filters usr/lib/*/ufo
# ufo-filters-data
dh_install -p ufo-filters-data usr/share/ufo
# ufo-filters-doc
dh_link -p ufo-filters-doc /usr/share/javascript/mathjax/MathJax.js /usr/share/doc/ufo-filters/html/_static/MathJax.js
dh_install -p ufo-filters-doc obj-*/docs/manual/html usr/share/doc/ufo-filters/
|