forked from ocaml/opam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
opam-installer.opam
37 lines (36 loc) · 1.35 KB
/
opam-installer.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
opam-version: "2.0"
version: "2.2.0~alpha3~dev"
synopsis: "Installation of files to a prefix, following opam conventions"
description: """
opam-installer is a small tool that can read *.install files, as defined by opam [1], and execute them to install or remove package files without going through opam.
[1] http://opam.ocaml.org/doc/2.0/Manual.html#lt-pkgname-gt-install
"""
maintainer: "[email protected]"
authors: [
"David Allsopp <[email protected]>"
"Vincent Bernardoff <[email protected]>"
"Raja Boujbel <[email protected]>"
"Kate Deplaix <[email protected]>"
"Roberto Di Cosmo <[email protected]>"
"Thomas Gazagnaire <[email protected]>"
"Louis Gesbert <[email protected]>"
"Fabrice Le Fessant <[email protected]>"
"Anil Madhavapeddy <[email protected]>"
"Guillem Rieu <[email protected]>"
"Ralf Treinen <[email protected]>"
"Frederic Tuong <[email protected]>"
]
homepage: "https://opam.ocaml.org"
bug-reports: "https://github.com/ocaml/opam/issues"
dev-repo: "git+https://github.com/ocaml/opam.git"
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
build: [
["./configure" "--disable-checks" "--prefix" prefix]
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.08.0"}
"opam-format" {= version}
"cmdliner" {>= "0.9.8"}
"dune" {>= "2.0.0"}
]