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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
#!/usr/bin/make -f
include /usr/share/ocaml/ocamlvars.mk
ifeq ($(OCAML_HAVE_OCAMLOPT),yes)
DEB_MAKE_BUILD_TARGET = world.opt
else
DEB_MAKE_BUILD_TARGET = world
endif
%:
dh $@ --with ocaml
configure-stamp:
./configure -mandir /usr/share/man
touch $@
override_dh_auto_clean: configure-stamp
dh_auto_clean
rm -rf doc/html/rss doc/html/*.html
override_dh_auto_configure: configure-stamp
override_dh_auto_build:
$(MAKE) $(DEB_MAKE_BUILD_TARGET)
mkdir -p _doc/doc/dvi _doc/doc/pdf _doc/doc/ps _doc/doc/htmlz _doc/doc/info
$(MAKE) -C doc/htmlp PAGESROOT=$(CURDIR)/_doc
chmod +x debian/camlp5r_w_macro.sh
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
ifeq ($(OCAML_HAVE_OCAMLOPT),yes)
$(MAKE) local-install
$(MAKE) -C testsuite all-tests
$(MAKE) -C test all
endif
endif
override_dh_auto_install:
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
override_dh_ocamldoc:
dh_ocamldoc -u -pp,debian/camlp5r_w_macro.sh,-I,+compiler-libs/parsing/
override_dh_ocaml:
dh_ocaml --runtime-map camlp5 \
--nodefined-map camlp5:Dynlinkaux,Dynlink,Dynlink_compilerlibs,Dynlink_platform_intf,Dynlink_common,Dynlink_types,Dynlink_config,Dynlink_symtable # temporary hack, should be fixed
|