1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#!/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/simple-patchsys.mk
# List any files which are not installed
include /usr/share/cdbs/1/rules/utils.mk
common-binary-post-install-arch:: list-missing
# Disable check on non-linux arch
ifeq ($(DEB_BUILD_ARCH_OS),linux)
DEB_MAKE_CHECK_TARGET := check
endif
DEB_CONFIGURE_EXTRA_FLAGS := --enable-gupnp
include $(CURDIR)/debian/update-patches.mk
|