-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopam
25 lines (25 loc) · 884 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
opam-version: "2.0"
name: "coq-promising-ir"
maintainer: "sunghwan.lee@sf.snu.ac.kr"
synopsis: "Coq implementation of the Promising IR semantics"
homepage: "https://sf.snu.ac.kr/promising-ir/"
dev-repo: "git+https://github.com/snu-sf/promising-ir-coq.git"
bug-reports: "https://github.com/snu-sf/promising-ir-coq/issues/"
authors: [
"Sung-Hwan Lee <sunghwan.lee@sf.snu.ac.kr>"
"Minki Cho <minki.cho@sf.snu.ac.kr>"
"Roy Margalit <roy.margalit@cs.tau.ac.il>"
"Chung-Kil Hur <gil.hur@sf.snu.ac.kr>"
"Ori Lahav <orilahav@tau.ac.il>"
]
build: [make "-j%{jobs}%" "build"]
install: [make "-f" "Makefile.coq" "install"]
remove: ["rm" "-rf" "%{lib}%/coq/user-contrib/PromisingIR"]
depends: [
"coq" { (>= "8.15") | (= "dev") }
"coq-sflib" { (= "dev") }
"coq-paco" { (= "4.1.2") }
"coq-promising-lib" { (= "dev") }
"coq-ext-lib" { (= "dev") }
"coq-itree" { (= "4.0.0") }
]