1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed -Wl,--no-undefined
%:
dh $@
override_dh_auto_configure:
override_dh_auto_build:
override_dh_auto_install:
# 1. configure, build and install variant with Digital Radio Mondiale support
dh_auto_configure -- --enable-drm
dh_auto_build
dh_auto_install
# 2. configure, build and install regular variant with frontend
dh_auto_configure
dh_auto_build
dh_auto_install
|