-
Notifications
You must be signed in to change notification settings - Fork 12
/
opam
42 lines (39 loc) · 1.45 KB
/
opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
opam-version: "2.0"
name: "user-setup"
version: "0.8"
maintainer: "Louis Gesbert <[email protected]>"
authors: "Louis Gesbert <[email protected]>"
homepage: "https://github.com/ocaml-opam/opam-user-setup"
bug-reports: "https://github.com/ocaml-opam/opam-user-setup/issues"
license: "ISC"
dev-repo: "git+https://github.com/ocaml-opam/opam-user-setup.git"
build: [make]
depends: [
"ocaml" {>= "3.12.1"}
"ocamlfind" {build}
"ocamlbuild" {build}
"cmdliner"
"re" {>= "1.7.2"}
]
conflicts: [
"ocaml-option-bytecode-only"
]
depopts: ["tuareg" "merlin" "ocp-indent" "ocp-index"]
available: opam-version >= "2.1"
post-messages: [
"To setup or update your editors, run 'opam user-setup install'."
{success}
]
tags: [ "org:ocamlpro" ]
flags: plugin
synopsis: "Helper for the configuration of editors for the use of OCaml tools"
description: """
This tool knows about several editors, and several OCaml editing tools existing
as opam packages. It automates the configuration of these editors, providing
base templates when appropriate, and suitably installing the editing tools in
the editor's configuration.
For example, it will configure your emacs or Vim to indent OCaml files using
[ocp-indent](http://www.typerex.org/ocp-indent.html) if you have that installed.
Opam-user-setup is designed to be suitable both to beginners not wanting to be
bothered with configuration files, and to people who manage them carefully.
It's customisable and reversible."""