this repo has no description
1opam-version: "2.0" 2synopsis: 3 "Lightweight completion and documentation browsing for OCaml libraries" 4description: """\ 5This package includes 6* The `ocp-index` library and command-line tool 7* `ocp-grep`, a tool that finds uses of a given (qualified) identifier in a source tree 8* bindings for emacs and vim (sublime text also [available](https://github.com/whitequark/sublime-ocp-index/)) 9 10To automatically configure your editors, install this with package `user-setup`.""" 11maintainer: "louis.gesbert@ocamlpro.com" 12authors: ["Louis Gesbert" "Gabriel Radanne"] 13license: ["LGPL-2.1-only WITH OCaml-LGPL-linking-exception" "GPL-3.0-only"] 14tags: ["org:ocamlpro" "org:typerex"] 15homepage: "http://www.typerex.org/ocp-index.html" 16bug-reports: "https://github.com/OCamlPro/ocp-index/issues" 17depends: [ 18 "ocaml" {>= "4.02.0" & < "5.1"} 19 "cppo" {build & >= "1.1.0"} 20 "dune" {>= "1.0"} 21 "ocp-indent" {>= "1.4.2"} 22 "re" {>= "1.9.0"} 23 "cmdliner" {< "2.0.0"} 24 "odoc" {with-doc} 25] 26build: ["dune" "build" "-p" name "-j" jobs] 27post-messages: 28 """\ 29This package requires additional configuration for use in editors. Either install package 'user-setup', or manually: 30 31* for Emacs, add these lines to ~/.emacs: 32 (add-to-list 'load-path "%{prefix}%/share/emacs/site-lisp") 33 (require 'ocp-index) 34 35* for Vim, add the following line to ~/.vimrc: 36 set rtp+=%{share}%/ocp-index/vim""" 37 {success & !user-setup:installed} 38dev-repo: "git+https://github.com/OCamlPro/ocp-index.git" 39url { 40 src: "https://github.com/OCamlPro/ocp-index/archive/refs/tags/1.3.3.tar.gz" 41 checksum: [ 42 "md5=738dd32765ce0b6b6423620cc62b7db9" 43 "sha512=6360240c951ac64baf9b3736c9a37c41a5ac8c5ddf52e723019fb5ef294e786e245712fd88f408bd8f6881d8741ab152872181062acd81443eec07d1d703e85a" 44 ] 45}