#!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # This has to be exported to make some magic below work. #export DH_OPTIONS export DEB_BUILD_MAINT_OPTIONS = hardening=+all install_file = /usr/bin/install -p -o root -g root -m 644 DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) ifneq ($(wildcard /usr/lib/$(DEB_HOST_MULTIARCH)/hdf5/serial/libhdf5.so),) export DEB_CPPFLAGS_MAINT_APPEND := -I/usr/include/hdf5/serial export DEB_LDFLAGS_MAINT_APPEND := -Wl,-L/usr/lib/$(DEB_HOST_MULTIARCH)/hdf5/serial endif CONFIGURE_FLAGS = --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \ --prefix=/usr --mandir=\$${prefix}/share/man \ --infodir=\$${prefix}/share/info \ --with-libctl=/usr/share/libctl3 \ --with-gcc-arch=no \ --enable-shared --with-pic --enable-cxx \ --with-mpi=yes \ --enable-maintainer-mode %: dh $@ --with autoreconf override_dh_auto_configure: F77=gfortran dh_auto_configure -- $(CONFIGURE_FLAGS) override_dh_auto_install: dh_installchangelogs NEWS.md dh_auto_install $(RM) debian/tmp/usr/lib/python2.7/dist-packages/meep/*.pyc $(RM) debian/tmp/usr/lib/python2.7/dist-packages/meep/*.pyo $(RM) debian/tmp/usr/lib/python2.7/dist-packages/meep/*.a $(RM) debian/tmp/usr/lib/python2.7/dist-packages/meep/*.la $(RM) debian/tmp/usr/lib/python2.7/dist-packages/meep/mpb/*.pyc $(RM) debian/tmp/usr/lib/python2.7/dist-packages/meep/mpb/*.pyo $(RM) debian/tmp/usr/lib/python2.7/dist-packages/meep/mpb/*.a $(RM) debian/tmp/usr/lib/python2.7/dist-packages/meep/mpb/*.la override_dh_clean: # we do not need this anymore rm -f tests/latest_output rm -f libctl/meep_mpi rm -f meep_mpi.pc rm -f src/libmeep_mpi.la dh_clean override_dh_auto_test: echo ${arch} #if [ "${arch}" = "armel" ] || \ # [ "${arch}" = "mips" ] || \ # [ "${arch}" = "mipsel" ] || \ # [ "${arch}" = "powerpc" ] || \ # [ "${arch}" = "sparc" ] ; then \ # echo "Do not make tests on this architecture" ;\ #else \ # echo "Do make tests on this architecture" ;\ # make check; \ # find; \ # cat python/test-suite.log; \ #fi # check whether testsuite runs everywhere make check; \ cat tests/test-suite.log # cat python/test-suite.log