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
derives_from_ubuntu := $(shell (dpkg-vendor --derives-from Ubuntu && echo "yes") || echo "no")
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@
override_dh_auto_build:
dh_auto_build -- 'LD=$$(CC)'
override_dh_auto_install:
dh_auto_install --destdir=debian/printer-driver-c2050/
override_dh_install:
dh_install
ifeq ($(derives_from_ubuntu),yes)
# Install the apport hook on Ubuntu and derivatives
install -D -m 644 debian/local/apport-hook.py $(CURDIR)/debian/printer-driver-c2050/usr/share/apport/package-hooks/source_c2050.py
endif
|