1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/usr/bin/make -f
# -*- makefile -*-
export DH_ALWAYS_EXCLUDE=license.txt:_sources/:.buildinfo:*.egg
%:
dh $@ --with python2,bash_completion
override_dh_auto_install:
dh_auto_install
cd docs/ && $(MAKE) html
override_dh_install:
dh_install -Xjquery.js
mv $(CURDIR)/debian/python-scrapy/usr/bin/scrapy-ws.py $(CURDIR)/debian/python-scrapy/usr/bin/scrapy-ws
override_dh_auto_clean:
dh_auto_clean
cd docs/ && $(MAKE) clean
override_dh_compress:
dh_compress -X.js -Xobjects.inv
|