#!/usr/bin/make -f
#export DH_VERBOSE=1

UBUNTU = $(shell dpkg-vendor --derives-from Ubuntu && echo yes)

%:
	dh  $@

override_dh_auto_configure:
	dh_auto_configure -- --enable-man

override_dh_auto_install:
	dh_auto_install
	dh_install debian/lxterminal.xpm /usr/share/pixmaps/

override_dh_auto_test:
	# Disabled: Incompelete in po/

ifeq ($(UBUNTU),yes)
override_dh_install:
        dh_install -plxinput debian/local/source_lxterminal.py usr/share/apport/package-hooks
endif

