Advertisement
Guest User

Untitled

a guest
Mar 31st, 2018
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. # ocaml-ptmap
  2.  
  3. cat > jbuild << EOF
  4. (jbuild_version 1)
  5.  
  6. (library
  7. ((name ptmap)
  8. (public_name ptmap)
  9. (wrapped false)
  10. (synopsis "implementation of maps over integers implemented as Patricia trees")))
  11. EOF
  12.  
  13. mv opam ptmap.opam
  14.  
  15. jbuilder build
  16.  
  17. sudo mkdir -p /opt/ocaml-4.06/lib/site-lib/ptmap
  18. sudo cp -L -r _build/install/default/lib/ptmap/* /opt/ocaml-4.06/lib/site-lib/ptmap/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement