forked from math-comp/finmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopam
26 lines (24 loc) · 1.11 KB
/
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
opam-version: "2.0"
name: "coq-mathcomp-finmap"
version: "dev"
maintainer: "Cyril Cohen <[email protected]>"
homepage: "https://github.com/math-comp/finmap"
bug-reports: "https://github.com/math-comp/finmap/issues"
dev-repo: "git+https://github.com/math-comp/finmap.git"
license: "CeCILL-B"
build: [ make "-j" "%{jobs}%" ]
install: [ make "install" ]
remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/mathcomp/finmap'" ]
depends: [
"coq-mathcomp-ssreflect" { (>= "1.8.0" & < "1.9.0~") | (= "dev")}
"coq-mathcomp-bigenough" { (>= "1.0.0" & < "1.1.0~") }
]
tags: [ "keyword:finmap" "keyword:finset" "keyword:multiset" "keyword:order"]
authors: [ "Cyril Cohen <[email protected]>" ]
synopsis: "Finite sets, finite maps, finitely supported functions, orders"
description: """
This library is an extension of mathematical component in order to
support finite sets and finite maps on choicetypes (rather that finite
types). This includes support for functions with finite support and
multisets. The library also contains a generic order and set libary,
which will be used to subsume notations for finite sets, eventually."""