1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_CXXFLAGS_MAINT_APPEND = -Wno-error
%:
dh $@ --with bash-completion
override_dh_auto_configure:
dh_auto_configure -- \
--disable-wbar-config \
PIDOF_BIN=/bin/pidof
override_dh_auto_test:
override_dh_install:
$(RM) -r debian/wbar/etc/bash_completion.d
$(RM) debian/wbar/etc/wbar.d/wbar.desktop
$(RM) -r debian/wbar/usr/share/wbar/glade/
dh_install
override_dh_missing:
dh_missing --list-missing
|