Build Debian Binaries and Sources DSC File - UG1630

Kria SOM App Store Applications Developer Deployment Guide for Ubuntu (UG1630)

Document ID
UG1630
Release Date
2023-08-11
Revision
1.0 English

In the package sources directory, use the debuild command:

  1. Install the dependencies of the package specified by the debian/control file.
    cd <package>-<new_version>/
    sudo apt build-dep <package>
    
  2. Build the Debian binary (only).
    debuild -b -us -uc
  3. Inspect the contents of the binary.
    1. The new *.deb file is now available in the parent directory
    2. To see the content of file:
      dpkg -c ../*.deb
  4. Install the binary on the target and verify functionality.
    dpkg -i ../*.deb