1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
#!/usr/bin/make -f
include /usr/share/dpkg/pkg-info.mk
include /usr/share/ocaml/ocamlvars.mk
include /usr/share/coq/coqvars.mk
%:
dh $@ --with coq,ocaml
override_dh_auto_clean:
make clean
dune clean
find . -name "*.aux" -delete
rm -f Makefile.coq Makefile.coq.conf
override_dh_auto_build:
make
dune build
override_dh_auto_install:
make install DESTDIR=$(CURDIR)/debian/tmp
dune install --destdir=$(CURDIR)/debian/tmp --prefix=/usr --libdir=$(OCAML_STDLIB_DIR)
override_dh_auto_test:
@echo "It's not a real autotools-made Makefile"
|