sudo apt-get install dpkg-repack
And then, to repack a .deb for an installed package, simply run this command:
sudo dpkg-repack <package>
Where <package> is the .deb package you want to repack.
dpkg-repack can be even used to create a different architecture .deb, for example amd64 (but I cannot test this to see if the amd64 created packages actually work ok):
sudo dpkg-repack --arch=amd64 <package>
For more info on dpkg-repack, type:
dpkg-repack --help