#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

%:
	dh --with python2 $@

override_dh_auto_build:
	# dont' install the embedded copy of the nodebox-web library
	mv src/indywiki/web1 debian
	dh_auto_build

override_dh_compress:
	dh_installman debian/indywiki.1
	mv debian/web1 src/indywiki
	dh_compress

override_dh_clean:
	rm -rf src/indywiki.egg-info/
	dh_clean
