1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
#!/usr/bin/make -f
# -*- makefile -*-
#export DH_VERBOSE=1
built_binaries := $(shell dh_listpackages)
ifneq (,$(filter $(DEB_HOST_ARCH), amd64 arm64 armel armhf i386 loong64 mips64el mipsel ppc64el s390x powerpc ppc64 riscv64 sparc64 x32))
ENABLE_COMPOSE=true
else
ENABLE_COMPOSE=false
endif
AS_CONFIGURE_ARGS = -Dapt-support=true \
-Dcompose=$(ENABLE_COMPOSE) \
-Dvapi=true \
-Dqt=true
ifneq ($(DEB_HOST_ARCH_OS), linux)
AS_CONFIGURE_ARGS += -Dsystemd=false
endif
ifeq ($(filter %-doc,$(built_binaries)),)
AS_CONFIGURE_ARGS += -Dapidocs=false
else
AS_CONFIGURE_ARGS += -Dapidocs=true
endif
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- $(AS_CONFIGURE_ARGS)
override_dh_missing:
dh_missing --fail-missing
|