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
%:
dh $@ -Spybuild
export LC_ALL=C
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
GTK_MODULES=gail:atk-bridge LC_ALL=C xvfb-run -s -noreset -a dbus-run-session -- nose2-3 -v
endif
override_dh_auto_install:
dh_auto_install
mkdir -p debian/python3-dogtail/usr/share/doc/python3-dogtail/
mv debian/python3-dogtail/usr/share/doc/dogtail/* \
debian/python3-dogtail/usr/share/doc/python3-dogtail/
rm -rf debian/python3-dogtail/usr/share/doc/dogtail/
override_dh_installchangelogs:
dh_installchangelogs NEWS
|