-
Notifications
You must be signed in to change notification settings - Fork 28
/
opam
41 lines (41 loc) · 1.3 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
opam-version: "2.0"
name: "opam-depext"
version: "1.2.3"
maintainer: [
"Louis Gesbert <[email protected]>"
"Anil Madhavapeddy <[email protected]>"
]
authors: [
"Louis Gesbert <[email protected]>"
"Anil Madhavapeddy <[email protected]>"
]
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
homepage: "https://github.com/ocaml/opam-depext"
bug-reports: "https://github.com/ocaml/opam-depext/issues"
depends: [
"ocaml" {>= "4.00"}
"base-unix"
"cmdliner" {>= "0.9.8" & dev}
"ocamlfind" {dev}
]
available: opam-version >= "2.0.0~beta5"
flags: plugin
build: [
[make] {!dev}
["ocamlfind" "%{ocaml:native?ocamlopt:ocamlc}%"
"-package" "unix,cmdliner" "-linkpkg"
"-o" "opam-depext"
"depext.ml"
] {dev}
]
dev-repo: "git+https://github.com/ocaml/opam-depext.git#2.0"
synopsis: "Install OS distribution packages"
description: """
opam-depext is a simple program intended to facilitate the interaction between
OPAM packages and the host package management system. It can query OPAM for the
right external dependencies on a set of packages, depending on the host OS, and
call the OS's package manager in the appropriate way to install them.
"""
post-messages: [
"opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead" {opam-version >= "2.1"}
]