-
-
Save wheelcomplex/5bf917b349b11b284d57edf7bfb25e2f to your computer and use it in GitHub Desktop.
Howto repackage deb packages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Use folowing steps to repackage dep package: | |
1: Extract deb package | |
# dpkg-deb -x <package.deb> <dir> | |
2: Extract control-information from a package | |
# dpkg-deb -e <package.deb> <dir/DEBIAN> | |
3. After completed to make changes to the package, repack the deb | |
# dpkg-deb -b <dir> <new-package.deb> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment