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 36 37 38 39 40 41 42 43 44 45
|
#!/usr/bin/make -f
HIPPOMOCKS_BROKEN_ARCHS=armel armhf arm64 mips mips64el mipsel
DEB_HOST_ARCH?=$(shell dpkg-architecture -qDEB_HOST_ARCH)
CBOT_CONFIGURE=-DMUSIC:BOOL=False
ifneq (,$(findstring colobot-common-sounds, $(shell dh_listpackages)))
CBOT_CONFIGURE=-DMUSIC:BOOL=True -DMUSIC_FLAC:BOOL=True
endif
ifeq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH), $(HIPPOMOCKS_BROKEN_ARCHS)))
CBOT_CONFIGURE+=-DTESTS:BOOL=False
else
CBOT_CONFIGURE+=-DTESTS:BOOL=True
endif
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- -DCMAKE_BUILD_TYPE:STRING="RelWithDebInfo" \
-DOFFICIAL_BUILD:BOOL=True \
-DINSTALL_DOCS:BOOL=True \
${CBOT_CONFIGURE} \
-DPYTHON_EXECUTABLE=/usr/bin/python3 \
-DOPENAL_SOUND:BOOL=True \
-DCMAKE_VERBOSE_MAKEFILE=True
override_dh_auto_build-arch:
dh_auto_build -a
override_dh_auto_build-indep:
dh_auto_build -i -- doc
ifeq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH), $(HIPPOMOCKS_BROKEN_ARCHS)))
override_dh_auto_test-arch:
# Allow the tests to fail on that architecture, see #843690
- dh_auto_test -a
endif
override_dh_auto_test-indep:
# can be removed after stretch have been released
override_dh_strip:
dh_strip --ddeb-migration='colobot-dbg (<< 0.1.6-3~)'
|