1
1
opam-version: "2.0"
2
2
version: "2.3.0~alpha~dev"
3
3
synopsis: "Core library for opam 2.2"
4
- description: """
5
- Small standard library extensions, and generic system interaction modules used by opam.
6
- """
4
+ description:
5
+ "Small standard library extensions, and generic system interaction modules used by opam."
7
6
maintainer: "opam-devel@lists.ocaml.org"
8
7
authors: [
9
8
"David Allsopp <david@tarides.com>"
@@ -19,16 +18,11 @@ authors: [
19
18
"Ralf Treinen <ralf.treinen@pps.jussieu.fr>"
20
19
"Frederic Tuong <tuong@users.gforge.inria.fr>"
21
20
]
21
+ license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
22
22
homepage: "https://opam.ocaml.org"
23
23
bug-reports: "https://github.com/ocaml/opam/issues"
24
- dev-repo: "git+https://github.com/ocaml/opam.git"
25
- license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
26
- build: [
27
- ["./configure" "--disable-checks" "--prefix" prefix]
28
- ["dune" "build" "-p" name "-j" jobs]
29
- ]
30
24
depends: [
31
- "ocaml" {>= "4.08.0"}
25
+ "ocaml" {>= "4.08.0" & (os != "win32" | < "5.0") }
32
26
"base-unix"
33
27
"ocamlgraph"
34
28
"re" {>= "1.9.0"}
@@ -37,5 +31,16 @@ depends: [
37
31
"jsonm"
38
32
"swhid_core"
39
33
"uutf"
34
+ (("host-system-mingw" {os = "win32" & os-distribution != "cygwinports"} &
35
+ "conf-mingw-w64-gcc-i686" {os = "win32" & os-distribution != "cygwinports"} &
36
+ "conf-mingw-w64-gcc-x86_64" {os = "win32" & os-distribution != "cygwinports"}) |
37
+ ("host-system-msvc" {os = "win32" & os-distribution != "cygwinports"} &
38
+ "conf-msvc32" {os = "win32" & os-distribution != "cygwinports"} &
39
+ "conf-msvc64" {os = "win32" & os-distribution != "cygwinports"}))
40
+ ]
41
+ conflicts: ["extlib-compat"]
42
+ build: [
43
+ ["./configure" "--disable-checks" "--prefix" prefix]
44
+ ["dune" "build" "-p" name "-j" jobs]
40
45
]
41
- conflicts : "extlib-compat "
46
+ dev-repo : "git+https://github.com/ocaml/opam.git "
0 commit comments