-
Notifications
You must be signed in to change notification settings - Fork 373
/
Copy pathopam-core.opam
46 lines (46 loc) · 1.72 KB
/
opam-core.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
43
44
45
46
opam-version: "2.0"
version: "2.3.0~alpha~dev"
synopsis: "Core library for opam 2.2"
description:
"Small standard library extensions, and generic system interaction modules used by opam."
maintainer: "opam-devel@lists.ocaml.org"
authors: [
"David Allsopp <david@tarides.com>"
"Vincent Bernardoff <vb@luminar.eu.org>"
"Raja Boujbel <raja.boujbel@ocamlpro.com>"
"Kate Deplaix <kit-ty-kate@outlook.com>"
"Roberto Di Cosmo <roberto@dicosmo.org>"
"Thomas Gazagnaire <thomas@gazagnaire.org>"
"Louis Gesbert <louis.gesbert@ocamlpro.com>"
"Fabrice Le Fessant <Fabrice.Le_fessant@inria.fr>"
"Anil Madhavapeddy <anil@recoil.org>"
"Guillem Rieu <guillem.rieu@ocamlpro.com>"
"Ralf Treinen <ralf.treinen@pps.jussieu.fr>"
"Frederic Tuong <tuong@users.gforge.inria.fr>"
]
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
homepage: "https://opam.ocaml.org"
bug-reports: "https://github.com/ocaml/opam/issues"
depends: [
"ocaml" {>= "4.08.0" & (os != "win32" | < "5.0")}
"base-unix"
"ocamlgraph"
"re" {>= "1.9.0"}
"dune" {>= "2.0.0"}
"sha" {>= "1.13"}
"jsonm"
"swhid_core"
"uutf"
(("host-system-mingw" {os = "win32" & os-distribution != "cygwinports"} &
"conf-mingw-w64-gcc-i686" {os = "win32" & os-distribution != "cygwinports"} &
"conf-mingw-w64-gcc-x86_64" {os = "win32" & os-distribution != "cygwinports"}) |
("host-system-msvc" {os = "win32" & os-distribution != "cygwinports"} &
"conf-msvc32" {os = "win32" & os-distribution != "cygwinports"} &
"conf-msvc64" {os = "win32" & os-distribution != "cygwinports"}))
]
conflicts: ["extlib-compat"]
build: [
["./configure" "--disable-checks" "--prefix" prefix]
["dune" "build" "-p" name "-j" jobs]
]
dev-repo: "git+https://github.com/ocaml/opam.git"