Tagged Questions
2
votes
2answers
61 views
Is there a way to automatically determine dependencies when setting up a dpkg control file?
Most of the fields in a dpkg (Debian) control file are straightforward. The tricky one is determining the list of dependencies (Depends:). I was hoping that dpkg-gencontrol could do this for me by ...
1
vote
1answer
20 views
Rebuild an ubuntu/debian package without some of the patches
I'd like to rebuild a source package that's in the ubuntu repo, changing nothing, except that I would like to build it without a subset of the patches it comes with. I have no experience doing such ...
1
vote
1answer
185 views
CentOS equivalent of dpkg -s [closed]
I'm adapting a prepare script for CentOS that was previously written for Ubuntu.
In the Ubuntu script, the command dpkg -s {some program} is called frequently. For example, one such command is dpkg ...
1
vote
2answers
788 views
debian package creating needed directories in preinst
I have the following debian structure:
debian/usr/share/test
debian/usr/share/test/test
debian/usr/share/test/test/a
debian/usr/share/test/test/b
After building the package using dpkg-deb --build ...
1
vote
3answers
2k views
How do I add an init.d script into a .deb
I have a project.init file in the debian directory (along with rules, control, etc), and I have dh_installinit in my rules file (in the binary-arch rule).
When dpkg-buildpackage completes, the init ...