forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopam
More file actions
45 lines (45 loc) · 1.56 KB
/
opam
File metadata and controls
45 lines (45 loc) · 1.56 KB
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
opam-version: "2.0"
maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>"
authors: [ "Christophe Troestler" ]
license: "GPL-3 with OCaml linking exception"
homepage: "https://github.com/ocaml/oasis2opam"
dev-repo: "git+https://github.com/ocaml/oasis2opam.git"
bug-reports: "https://github.com/ocaml/oasis2opam/issues"
tags: [ "build" "install" ]
build: [
["oasis" "setup"]
["ocaml" "setup.ml" "-configure" "--prefix" prefix]
["ocaml" "setup.ml" "-build"]
["oasis" "setup"] {with-test}
["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test}
["ocaml" "setup.ml" "-build"] {with-test}
["ocaml" "setup.ml" "-test"] {with-test}
]
install: ["ocaml" "setup.ml" "-install"]
remove: [
["ocaml" "%{etc}%/oasis2opam/_oasis_remove_.ml" "%{etc}%/oasis2opam"]
]
depends: [
"ocaml"
"base-bytes" {build}
"base-unix" {build}
"oasis" {build & >= "0.4.4"}
"ocamlfind" {build & >= "1.5"}
"ounit" {with-test & >= "2.0.0"}
"qcheck" {with-test & >= "0.4" & < "0.5"}
"ocamlbuild" {build}
]
synopsis: "Tool to convert OASIS metadata to OPAM package descriptions"
description: """
Generate OPAM files from _oasis. Most of the metadata supported by
oasis is translated to OPAM. A simple .install file is written to
preserve Oasis setup.{ml,data,log} in order to be able to use oasis
for removal."""
extra-files: [
["oasis2opam.install" "md5=0d1b822c897681cf54b3e1aed52dda99"]
["_oasis_remove_.ml" "md5=6100ca146fa97d2196eb49a2631d0796"]
]
url {
src: "https://github.com/ocaml/oasis2opam/archive/0.6.1.tar.gz"
checksum: "md5=5e2ee417afac7e0138afb2c955001019"
}