#!/usr/bin/make -f

override_dh_auto_build:
	# Add here commands to compile the package.
	$(MAKE)

override_dh_auto_clean:
	# Add here commands to clean up after the build process.
	$(MAKE) clean

override_dh_auto_install:
	# Add here commands to install the package into debian/debarchiver.
	$(MAKE) install	DESTDIR=$(CURDIR)/debian/debarchiver
	mkdir -p $(CURDIR)/debian/debarchiver/usr/share/lintian/overrides
	install -m644 debian/debarchiver.override \
		$(CURDIR)/debian/debarchiver/usr/share/lintian/overrides/debarchiver

%:
	dh $@
