-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopam
More file actions
23 lines (23 loc) · 721 Bytes
/
opam
File metadata and controls
23 lines (23 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
opam-version: "1.2"
name: "glicko2"
version: "1.0.0"
maintainer: "Bruce Ricard <bruce.ricard@gmail.com>"
author: ["Bruce Ricard <bruce.ricard@gmail.com>" "Jesper Louis Andersen <jesper.louis.andersen@gmail.com>"]
homepage: "https://github.com/bruce-ricard/glicko2"
bug-reports: "https://github.com/bruce-ricard/glicko2/issues"
license: "GNU GPLv2"
dev-repo: "git@github.com:bruce-ricard/glicko2.git"
build: [make]
install: [make "install"]
build-test : [
["./configure" "--enable-tests"]
[make "test"]
]
remove: ["ocamlfind" "remove" "glicko2"]
depends : [
"fmt" { >= "0.0.8" }
"logs" { >= "0.6.0" }
"ocamlfind" { build & >= "1.7.0" }
"alcotest" { test & >= "0.7.0" }
]
available: [ocaml-version >= "4.02.3"]