2. we will have to modify the d/rules to pass the build and this will
change the results of built:
```
--- a/debian/rules
+++ b/debian/rules
@@ -29,8 +29,8 @@ override_dh_auto_clean:
.PHONY: override_dh_auto_build
override_dh_auto_build:
- dh_auto_build
- ocamlfind ocamlmktop -verbose -package compiler-libs -package
camlp-streams -linkpkg -o ocaml
+ $(MAKE)
+ #ocamlfind ocamlmktop -verbose -package compiler-libs -package
camlp-streams -linkpkg -o ocaml
@@ -41,7 +41,7 @@ override_dh_auto_install:
chmod -x $(INSTDIR)/usr/share/hol-light/*.ml
chmod -x $(INSTDIR)/usr/share/hol-light/*/*.ml
install -d $(INSTDIR)/usr/bin
- install ocaml $(INSTDIR)/usr/share/hol-light
+ #install ocaml $(INSTDIR)/usr/share/hol-light
install debian/hol-light.sh $(INSTDIR)/usr/bin/hol-light
```
Obviously this may affect the functionality of the package.