this repo has no description
1opam-version: "2.0" 2license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 3synopsis: "The ocp-search tool to index/search source packages" 4description: """\ 5ocp-search is an index/search tool built as an example on top of 6ez_search. It can be used to index OCaml files in a directory containing 7extracted source packages, building a database. The database can then 8be searched for regexps, displaying occurrences with contexts. 9""" 10authors: ["Fabrice Le Fessant <fabrice.le_fessant@origin-labs.com>"] 11maintainer: ["Fabrice Le Fessant <fabrice.le_fessant@origin-labs.com>"] 12homepage: "https://ocamlpro.github.io/ez_search" 13doc: "https://ocamlpro.github.io/ez_search/sphinx" 14bug-reports: "https://github.com/ocamlpro/ez_search/issues" 15dev-repo: "git+https://github.com/ocamlpro/ez_search.git" 16tags: "org:ocamlpro" 17build: [ 18 ["dune" "subst"] {dev} 19 ["sh" "-c" "./scripts/before.sh build '%{name}%'"] 20 [ 21 "dune" 22 "build" 23 "-p" 24 name 25 "-j" 26 jobs 27 "@install" 28 "@runtest" {with-test} 29 "@doc" {with-doc} 30 ] 31 ["sh" "-c" "./scripts/after.sh build '%{name}%'"] 32] 33install: [ 34 ["sh" "-c" "./scripts/before.sh install '%{name}%'"] 35] 36depends: [ 37 "ocaml" {>= "4.07.0"} 38 "dune" {>= "2.7.0"} 39 "ez_search" {= version} 40 "ppx_inline_test" {with-test} 41 "ppx_expect" {with-test} 42 "odoc" {with-doc} 43 "ocamlformat" {with-test} 44] 45available: os ="linux" 46 47url { 48 src: "https://github.com/ocamlpro/ez_search/archive/v0.2.2.tar.gz" 49 checksum: [ "sha256=0b640b0674675dcd84e509d19578908cac69a47c99a01e3ad32ca20dc62e1dbc" ] 50}