I've never built a .deb in my life, although I have a vague idea of what's required.
Specifically I want to try to turn this: https://github.com/OpenMediaVault-Plugin-Developers/openmediavault-virtualbo... into a .deb
To my untrained eye it looks like most of the bits are probably in place but throwing it directly at dpkg-deb -b suggests otherwise.
On Wed, Oct 02, 2013 at 09:43:32AM +0100, Mark Rogers wrote:
I've never built a .deb in my life, although I have a vague idea of what's required.
Specifically I want to try to turn this: https://github.com/OpenMediaVault-Plugin-Developers/openmediavault-virtualbo... into a .deb
To my untrained eye it looks like most of the bits are probably in place but throwing it directly at dpkg-deb -b suggests otherwise.
dpkg-buildpackage -uc -us -b
while in a checked out tree is probably what you want.
J.
On 2 October 2013 09:46, Jonathan McDowell noodles@earth.li wrote:
dpkg-buildpackage -uc -us -b
Perfect, thanks!