-
Notifications
You must be signed in to change notification settings - Fork 1
/
opam
30 lines (29 loc) · 785 Bytes
/
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
opam-version: "2.0"
name: "coq-succinct"
maintainer: "[email protected]"
homepage: "https://github.com/affeldt-aist/succinct"
bug-reports: "https://github.com/affeldt-aist/succinct/issues"
dev-repo: "git+https://github.com/affeldt-aist/succinct.git"
license: "TBD"
authors: [
"Reynald Affeldt"
"Jacques Garrigue"
"Xuanrui Qi"
"Kazunari Tanaka"
]
build: [
["coq_makefile" "-f" "_CoqProject" "-o" "Makefile"]
[make]
]
install: [
[make "install"]
]
depends: [
"coq" { (>= "8.9.1") }
"coq-mathcomp-ssreflect" {(>= "1.9.0")}
]
synopsis: "Compact data structures in Coq"
description: """
A tentative formalization of compact data structures following [1]
[1] Gonzalo Navarro, Compact Data Structures---A Practical Approach, Cambridge University Press, 2016
"""