#!/bin/sh
exec debuild -i -uc -us -nc -b -j`nproc` "$@"

cat <<END >/dev/stderr
Options:

-i: Ignore unsigned changes files in the source tree, useful for local changes.
-uc: Don't sign the .changes file generated, useful for no GPG key or if no signing desired.
-us: Don't sign the source package, useful for no GPG key or if no signing desired.
-nc: No clean of the source tree, can save time but may cause issues.
-b: Build only binary package, without new source package. Useful for non-source changes.
-j`nproc`: Specifies number of simultaneous build jobs. nproc sets the number automatically, speeding up the build.
END
