this repo has no description
1opam-version: "2.0"
2maintainer: "contact@ocamlpro.com"
3authors: [
4 "Louis Gesbert <louis.gesbert@ocamlpro.com>"
5 "Thomas Gazagnaire <thomas@gazagnaire.org>"
6 "Jun Furuse"
7]
8homepage: "http://www.typerex.org/ocp-indent.html"
9bug-reports: "https://github.com/OCamlPro/ocp-indent/issues"
10license: "LGPL-2.0-or-later"
11tags: ["org:ocamlpro" "org:typerex"]
12dev-repo: "git+https://github.com/OCamlPro/ocp-indent.git"
13build: [
14 ["./configure" "--prefix" prefix]
15 [make]
16]
17depends: [
18 "ocaml"
19 "ocp-build" {build & >= "1.99.6-beta"}
20 "cmdliner" {>= "1.0.0" & < "2.0.0"}
21 "base-bytes"
22]
23post-messages: [
24 "
25This package requires additional configuration for use in editors. Install package 'user-setup', or manually:
26
27* for Emacs, add these lines to ~/.emacs:
28 (add-to-list 'load-path \"%{share}%/emacs/site-lisp\")
29 (require 'ocp-indent)
30
31* for Vim, add this line to ~/.vimrc:
32 set rtp^=\"%{share}%/ocp-indent/vim\"
33 "
34 {success & !user-setup:installed}
35]
36synopsis: "A simple tool to indent OCaml programs"
37description: """
38Ocp-indent is based on an approximate, tolerant OCaml parser and a simple stack
39machine ; this is much faster and more reliable than using regexps. Presets and
40configuration options available, with the possibility to set them project-wide.
41Supports most common syntax extensions, and extensible for others.
42
43Includes:
44
45* An indentor program, callable from the command-line or from within editors
46* Bindings for popular editors
47* A library that can be directly used by editor writers, or just for
48approximate parsing."""
49url {
50 src: "https://github.com/OCamlPro/ocp-indent/archive/1.6.1.tar.gz"
51 checksum: [
52 "sha256=f314fa1d6f1ece652a291b552f1f49ec6439c9c3f5e7819e16de5c08d4588fe2"
53 "md5=935d03f4f6376d687c46f350ff5eecdd"
54 ]
55}