Quote:
Originally Posted by penguiniator
You could create a wrapper script that takes package names as arguments and then does something like:
for i in $@; do
apt-get install $i ${i}-devel
done
|
I thought about something like that but there some issues, some packages don't conform. eg libtheora0 & libtheora-dev. Quite a few packages do not have seperate -dev packages and apt-get halts at non-existant packages. I was hoping there was a nice easy way builtin somewhere but it is now obvious there isn't: after looking around I noticed that most packages do not mention their corresponding -dev packages in the package relations, so any form of apt-related automatic method is off the table, so I guess it's back to manual search and install for now.
Quote:
Originally Posted by craigevil
Why bother?
|
Mainly because I like to compile things alot and need all the headers installed for this. Like the other day I needed to compile a kde app. I had to grab dev packages for X, kdelibs, qt and quite a few others... I figured it would be nice just to have them installed already , just like I do on my LFS box.
Anyway thanks for replying.