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

%:
	dh $@ --parallel --with autoreconf

#	--enable-debug

# disable TLS to fix warning with TLS and arpack
CONF_FLAGS=\
	--enable-gmp \
	--disable-tls \
	--with-external-arpack \
	--with-external-blas \
	--with-external-lapack \
	--with-external-f2c \
	--with-external-glpk

override_dh_auto_configure:
	dh_auto_configure -- $(CONF_FLAGS)

get-orig-source:
	uscan --verbose --force-download --rename
