Tagged Questions

4
votes
2answers
605 views

license info of a deb package

I am trying to get license information of uninstalled deb packages. dpkg --info <package-name>.deb does not give that information. Is there any command in ubuntu which will give this info? (In ...
3
votes
1answer
273 views

Including license agreement in .deb file

How can i include a license agreement interaction in a .deb file? The question http://stackoverflow.com/questions/668838/linux-support-for-click-thru-licenses only asks if its possible, but not how. ...
2
votes
2answers
98 views

How can I uninstall the last installed application (recently installed) with dpkg?

I need to use a command and or script that uninstalls the last recently installed application deb . I can't use apt-get in this case but rather dpkg --purge or similar, something like dpkg --remove ...
2
votes
0answers
47 views

What's a good method to trigger apache restart after .deb installation?

I have several custom .debs that I've built. They all depend on apache and after upgrade of any package apache needs to be restarted. Restarting apache naively from the postinst I get a restart for ...
1
vote
0answers
229 views

Mac OS .deb packaging trouble

I've searched a lot, but didn't find the solution. I need to package my ios app into .deb. I have installed Mac Ports and dpkg, I have control file in DEBIAN folder in MyApp folder I run ...
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 ...
0
votes
1answer
209 views

Creating a .deb with Apache Ant and without dpkg

I'm trying to create a buildfile for creating .deb installation files. So far, so fine. My goal is to avoid dpkg, so that the build can be done from any plattform. Now that I created all the ...
0
votes
4answers
212 views

Why does my hand created deb package fails at install with “unable to create” on files?

I made a perl script that creates a deb binary package from scratch. I created the data, control, etc. But when I run dpkg -i on my deb package it complains that it is unable to files from data. ...