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 47 48
|
opam-version: "2.0"
synopsis: "Relation Algebra and KAT in Coq"
name: "coq-relation-algebra"
maintainer: "Damien Pous <Damien.Pous@ens-lyon.fr>"
#TO SET BEFORE RELEASE
version: "dev"
homepage: "http://perso.ens-lyon.fr/damien.pous/ra/"
dev-repo: "git+https://github.com/damien-pous/relation-algebra.git"
bug-reports: "https://github.com/damien-pous/relation-algebra/issues"
license: "LGPL-3.0-or-later"
depends: [
"ocaml"
#TO SET BEFORE RELEASE
"coq" {>= "8.20"}
# "coq" {>= "8.20" & < "8.21~"}
#TO REMOVE BEFORE RELEASE (TO MAKE THEM OPTIONAL)
"coq-mathcomp-ssreflect"
"coq-aac-tactics"
]
#TO SET BEFORE RELEASE
# depopts: [ "coq-mathcomp-ssreflect" "coq-aac-tactics" ]
build: [
["sh" "-exc" "./configure --%{coq-mathcomp-ssreflect:enable}%-ssr --%{coq-aac-tactics:enable}%-aac"]
[make "-j%{jobs}%"]
]
install: [make "install"]
tags: [
"keyword:relation algebra"
"keyword:kleene algebra with tests"
"keyword:kat"
"keyword:allegories"
"keyword:residuated structures"
"keyword:automata"
"keyword:regular expressions"
"keyword:matrices"
"category:Mathematics/Algebra"
"logpath:RelationAlgebra" ]
authors: [
"Damien Pous <Damien.Pous@ens-lyon.fr>"
"Christian Doczkal <christian.doczkal@ens-lyon.fr>"
]
## CHECK BEFORE RELEASING:
# CHANGELOG
# README.md
# webpage
# above updates to the opam file in coq-opam-archive
|