pyqtgraph/tools/debian/rules
Luke Campagnola c8739e5425 Updated build system to use pybuild
- now generates python-pyqtgraph, python3-pyqtgraph, and python-pyqtgraph-doc packages
- `python setup.py sdist deb` works
2014-01-12 23:59:53 -05:00

15 lines
330 B
Makefile
Executable File

#!/usr/bin/make -f
#export DH_VERBOSE=1
export PYBUILD_NAME=pyqtgraph
%:
dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
override_dh_installdocs:
PYTHONPATH=`pwd` make -C doc html
dh_installdocs -ppython-pyqtgraph-doc doc/build/html
dh_installdocs -A
override_dh_clean:
dh_clean
find ./ -name "*.pyc" -delete