PDA

View Full Version : Automatic package creation


Gannin
May 8th, 2009, 10:12 PM
It used to be when I compiled something from source, I would install it using checkinstall, which would automatically make a simply .deb of the program then install that .deb. However, with the complexity of installs being what they are these days, checkinstall very often no longer works.

I'm pretty sure there are some similar programs out there but I can't remember the names of any, even after doing a search. I seem to remember reading about some of them in Linux Journal a while ago. What are some good modern programs for automatically creating a .deb from something you've compiled? Thanks.

andrew.46
May 9th, 2009, 03:49 AM
Hi Gannin,

It used to be when I compiled something from source, I would install it using checkinstall, which would automatically make a simply .deb of the program then install that .deb. However, with the complexity of installs being what they are these days, checkinstall very often no longer works.

There is a known bug with checkinstall that is usually seen as:

....... No such file or directory

followed by a failed package. Is this the error that you have come across? Apart from this, which can be bypassed by adding --fstrans=no to the checkinstall line, I was not aware of any major problems with checkinstall. But I have been wrong before :-).

Andrew

Gannin
May 9th, 2009, 04:28 AM
That actually seemed to work. Thank you :).