1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/autotools.mk
include /usr/share/cdbs/1/rules/utils.mk
common-binary-post-install-arch:: list-missing
export DPKG_GENSYMBOLS_CHECK_LEVEL = 4
DEB_CONFIGURE_EXTRA_FLAGS = --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \
--enable-gtk-doc \
--disable-python
ifneq (,$(findstring coverage,$(DEB_BUILD_OPTIONS)))
DEB_CONFIGURE_EXTRA_FLAGS += --enable-coverage
endif
include $(CURDIR)/debian/update-patches.mk
|