Ignore dependencies when building/pushing a source package

Change-Id: I593b31892b181b9e689391871e4e42720ce06c5b
diff --git a/packaging.mk b/packaging.mk
index 3d539af..c4fb1af 100644
--- a/packaging.mk
+++ b/packaging.mk
@@ -4,7 +4,7 @@
 # List of target distributions
 DISTROS=xenial bionic eoan
 
-DEBUILD=debuild -S
+DEBUILD=debuild -S -d
 
 all: _phony
 
@@ -27,7 +27,7 @@
 tar --exclude .git --exclude '*.pyc' -cf - ${NAME}_${VERSION} | gzip -n9c > ${NAME}_${VERSION}.orig.tar.gz
 
 source-build:
-	$(MAKE) _build DEBUILD="debuild -S -sa"
+	$(MAKE) _build DEBUILD="debuild -S -sa -d"
 
 build:
 	$(MAKE) _build DEBUILD=debuild