X-Git-Url: https://git.llucax.com/software/mutt-debian.git/blobdiff_plain/3dba9e5c9fc1d796291f92d6bf08ed88ef540637..04fefd3d4a76c49e327e26a553bb41bbc44160a9:/debian/rules diff --git a/debian/rules b/debian/rules index 90c1cdd..fe8e0b1 100755 --- a/debian/rules +++ b/debian/rules @@ -12,9 +12,10 @@ BUILD_PATCHED := yes # HCACHE_DB := bdb HCACHE_DB := gdbm # HCACHE_DB := qdbm +# HCACHE_DB := tokyocabinet ### # GPGME backend -# GPGME := --enable-gpgme +GPGME := --enable-gpgme ### ###################### variables ###################### @@ -26,13 +27,16 @@ endif # Configure arguments ifeq ($(HCACHE_DB),bdb) - hcache_db := --without-gdbm --without-qdbm + hcache_db := --without-gdbm --without-qdbm --without-tokyocabinet endif ifeq ($(HCACHE_DB),gdbm) - hcache_db := --without-qdbm --without-bdb + hcache_db := --without-qdbm --without-bdb --without-tokyocabinet endif ifeq ($(HCACHE_DB),qdbm) - hcache_db := --without-gdbm --without-bdb + hcache_db := --without-gdbm --without-bdb --without-tokyocabinet +endif +ifeq ($(HCACHE_DB),tokyocabinet) + hcache_db := --without-gdbm --without-bdb --without-qdbm endif confflags = --prefix=/usr \ @@ -126,7 +130,7 @@ install: build ###################### install ###################### dh_testdir dh_testroot - dh_clean -k + dh_prep cd $(objdir) && $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp cd debian/tmp/usr/share/doc && \