"You don't know where your shadow will fall", Somebody.
Posts tagged control
Modify CONTROL file in Debian Package
0Suppose you have your-package.deb file and want to change files inside the package:
1 2 3 | mkdir -p tmp/DEBIAN dpkg-deb -x your-package.deb tmp/ dpkg-deb --control your-package.deb tmp/DEBIAN |
Modify the file tmp/DEBIAN/control as you like it.
1 | dpkg-deb -b tmp your-package-custom.deb |
Finally,
1 | dpkg -i your-package-custom.deb |
Done!!!