1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/usr/bin/make -f
# -*- makefile -*-
export CXXFLAGS=-g -O2 -std=c++11
export OMPI_MCA_orte_rsh_agent=/bin/false
%:
dh $@ --buildsystem=cmake
override_dh_auto_configure:
dh_auto_configure -- \
-DMPI_C_COMPILER=mpicc \
-DMPQC_NEW_FEATURES=1 \
-DBOOST=/usr
override_dh_auto_install:
dh_auto_install
mv $(CURDIR)/debian/tmp/usr/bin/mpqc \
$(CURDIR)/debian/tmp/usr/bin/mpqc3
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
override_dh_auto_test:
-(cd obj-*/test; make check0)
endif
|