1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/usr/bin/make -f
DEB_BUILDDIR := debian/build
DEB_CONFIGURE_EXTRA_FLAGS += --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \
--enable-gtk-doc --enable-python
include /usr/share/cdbs/1/rules/autoreconf.mk
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-autotools.mk
# List any files which are not installed
include /usr/share/cdbs/1/rules/utils.mk
common-binary-post-install-arch:: list-missing
DEB_DBG_PACKAGE_libgupnp-igd-1.0-4 := libgupnp-igd-1.0-dbg
DEB_DH_MAKESHLIBS_ARGS_libgupnp-igd-1.0-4 += -V -- -c4
include $(CURDIR)/debian/update-patches.mk
|