-
-
Save axeliodiaz/83b619740e2cfc08db64 to your computer and use it in GitHub Desktop.
Howto repackage deb packages
This file contains hidden or 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: Make dirs | |
# mkdir extract/DEBIAN build -p | |
2: Extract deb package | |
# dpkg-deb -x <package.deb> extract/ | |
3: Extract control-information from a package | |
# dpkg-deb -e <package.deb> extract/DEBIAN | |
4. After completed to make changes to the package, repack the deb | |
# dpkg-deb -b extract/ build/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment