1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#!/usr/bin/make -f
# -*- makefile -*-
include /usr/share/ocaml/ocamlvars.mk
DESTDIR=$(CURDIR)/debian/tmp
%:
dh $@ --with ocaml
.PHONY: override_dh_auto_build
override_dh_auto_build:
mv src/glpk/dune-shared src/glpk/dune
dune build -p mccs
.PHONY: override_dh_auto_test
override_dh_auto_test:
# Disable tests for now, they are somehow broken
# dune runtest -p mccs
.PHONY: override_dh_auto_install
override_dh_auto_install:
dune install --destdir=$(DESTDIR) --prefix=/usr --libdir=..$(OCAML_STDLIB_DIR)
|