X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=debian%2Frules;h=0eb3357be9b018fc65886589e05d1fe0d44bf78f;hb=cbaacad316331a3cb34ca797184e164ca8c468a2;hp=cbe925d7587131c8ec8761915930894c60c096fd;hpb=0ea5f3fc0e0336921ba670a28201b59d2c977cfb;p=obsolete%2Fnotmuch-old diff --git a/debian/rules b/debian/rules index cbe925d7..0eb3357b 100755 --- a/debian/rules +++ b/debian/rules @@ -1,3 +1,29 @@ #!/usr/bin/make -f + +python3_all = py3versions -s | xargs -n1 | xargs -t -I {} env {} + %: - dh $@ + dh $@ --with python2,python3 + +override_dh_auto_configure: + dh_auto_configure -- --emacslispdir=/usr/share/emacs/site-lisp/notmuch + +override_dh_auto_test: + echo tests disabled. + +override_dh_auto_build: + dh_auto_build + dh_auto_build --sourcedirectory bindings/python + cd bindings/python && $(python3_all) setup.py build + $(MAKE) -C contrib/notmuch-mutt + +override_dh_auto_clean: + dh_auto_clean + dh_auto_clean --sourcedirectory bindings/python + cd bindings/python && $(python3_all) setup.py clean -a + $(MAKE) -C contrib/notmuch-mutt clean + +override_dh_auto_install: + dh_auto_install + dh_auto_install --sourcedirectory bindings/python + cd bindings/python && $(python3_all) setup.py install --install-layout=deb --root=$(CURDIR)/debian/tmp