1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/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
DEB_CONFIGURE_EXTRA_FLAGS = --enable-python --enable-gupnp
# Testsuit has a race-condition, so disable it for now
#DEB_MAKE_CHECK_TARGET = check
DEB_DH_MAKESHLIBS_ARGS_libgstfarsight0.10-0 := -X/usr/lib/gstreamer-0.10 -X/usr/lib/farsight2-0.0
# List any files which are not installed
include /usr/share/cdbs/1/rules/utils.mk
common-binary-post-install-arch:: list-missing
binary-install/python-farsight::
dh_pycentral -p$(cdbs_curpkg)
include $(CURDIR)/debian/update-patches.mk
|