-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopam
42 lines (37 loc) · 1.13 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
opam-version: "2.0"
name: "coq-ssrcategories"
synopsis: "Category theory using SSReflect & packed classes" # One-line description
description: """
(Classical) category theory formalized using SSReflect and packaed classes.
""" # Longer description, can span several lines
homepage: "https://github.com/xuanruiqi/categories"
dev-repo: "git+https://github.com/xuanruiqi/categoriesgit"
bug-reports: "https://github.com/xuanruiqi/categories/issues"
maintainer: "[email protected]"
authors: [
"Xuanrui Qi"
]
license: "MIT" # Make sure this is reflected by a LICENSE file in your sources
depends: [
"coq" {>= "8.11" & < "8.13~"}
"coq-mathcomp-ssreflect" {>= "1.11.0" & < "1.12~"}
"coq-mathcomp-algebra" {>= "1.11.0" & < "1.12~"}
"coq-mathcomp-analysis" {>= "0.3.1"}
]
build: [
["coq_makefile" "-f" "_CoqProject" "-o" "Makefile"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
url {
src: "https://github.com/$YOU/foo/archive/1.0.0.tar.gz"
checksum: "sha256=133f2c6de1b9b35c0b26ab3e21fa86a351fffb415d20cae714b015f95fbc3725"
}
tags: [
"keyword:category"
"keyword:ssreflect"
"category:Math/Category Theory"
"logpath:categories"
]