#!/usr/bin/make -f
# -*- makefile -*-

%:
	dh $@ --buildsystem=octave --with=octave

INSTDIR := $(CURDIR)/debian/octave-specfun
override_dh_auto_install:
	dh_auto_install
	for i in ellipke.m erfcinv.m expint.m ; do	\
		rm -f $$(find $(INSTDIR)/ -name $$i) ;	\
	done
