1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/make -f
#export DH_VERBOSE=1
%:
dh $@ --with=autoreconf
override_dh_auto_install:
# --destdir: don't install to debian/tmp -- we would just manyally copy
# everything to debian/pcb2gcode anyway (as with single binary
# packages)
dh_auto_install --destdir=debian/pcb2gcode/
# solve the http://wiki.debian.org/RpathIssue the brutal way
chrpath -d debian/pcb2gcode/usr/bin/pcb2gcode
override_dh_strip:
dh_strip --dbg-package pcb2gcode-dbg
override_dh_installdocs:
dh_installdocs --link-doc=pcb2gcode
|