I'm developing two Ubuntu packages which one depends on the other.
Say, foo
which depends on libfoo
.
I increment foo
and libfoo
's version together. It is always the case that foo
version 1.2.1
depends on libfoo
version 1.2.1
.
What's the standard debian process for building libfoo
and foo
?
Do I have to build and install libfoo
before and only then compile foo
?
Can I have pbuilder
somehow understand foo
needs libfoo
, and install libfoo
before compiling foo
?
What's the best practice for this case