Re: Elegant Debhelper way to specify files between runtime and debug library packages

2012-05-08 Thread Ben Finney
Gergely Nagy writes: > Ben Finney writes: > > > What is the recommended way to specify packaging for a library > > package and its corresponding debug symbols package? > […] > You could do something like: > > install: build > dh $@ --package=foo-dbg > dh $@ --exclude "*_d.so" > > de

Re: Elegant Debhelper way to specify files between runtime and debug library packages

2012-03-26 Thread Gergely Nagy
Ben Finney writes: > What is the recommended way to specify packaging for a library package > and its corresponding debug symbols package? I use the following line at the top of my debian/rules: export DH_OPTIONS += --dbg-package=foo-dbg This appears to do the right thing with dh compat level

Elegant Debhelper way to specify files between runtime and debug library packages

2012-03-25 Thread Ben Finney
Howdy all, What is the recommended way to specify packaging for a library package and its corresponding debug symbols package? With a previous Debhelper (7.x), I could specify it with ‘debian/rules’ in the ‘install’ and ‘override_dh_auto_install’ target: install: build dh $@