When creating a deb, directories is required to be in archive, so let
find don't omit directories is required.
https://stackoverflow.com/questions/4564434/why-does-my-hand-created-deb-package-fails-at-install-with-unable-to-create-on
Since find will output all directories and files, the ar command will
include a file twice (one when adding directory ar will include the
file inside it, one specific by filename), and the second one will be
a hardlink to the previous. This will case apt install failed as "error
creating hard link"
So now just let find output directories and files only as the first
level. And deeper files will be included automatically by ar.