Skip to content
Snippets Groups Projects
rules 601 B
Newer Older
#!/usr/bin/make -f

# export DH_VERBOSE=1

## Here goes the debian make.

%:
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

Dilawar Singh's avatar
Dilawar Singh committed
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