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