#!/usr/bin/make -f # export DH_VERBOSE=1 ## Here goes the debian make. %: dh "$@" # Override clean target. override_dh_auto_clean: rm -rf $(BUILD_DIR_MOOSE) # consider using -DUSE_VERSIONED_DIR=ON if backporting override_dh_auto_configure: cmake -DCMAKE_INSTALL_PREFIX=debian/tmp/usr -DCMAKE_VERSION=3.2.git override_dh_auto_build: make VERBOSE=0 -j`nproc` override_dh_auto_install: make install override_dh_auto_test: echo "Nothing to do here" override_dh_shlibdeps: dh_shlibdeps --dpkg-shlibdeps-params=--ignore-missing-info override_dh_python2: dh_python2 --no-guessing-versions