forked from polazarus/ocamlyices2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopam.in
30 lines (30 loc) · 899 Bytes
/
opam.in
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: "1.2"
name: "@PACKAGE_NAME@"
version: "@PACKAGE_VERSION@"
maintainer: "Mickaël Delahaye <mickael.delahaye@gmail.com>"
authors: "Mickaël Delahaye <mickael.delahaye@gmail.com>"
homepage: "http://micdel.fr/ocamlyices2.html"
bug-reports: "https://github.com/polazarus/ocamlyices2/issues"
dev-repo: "https://github.com/polazarus/ocamlyices2.git"
license: "ISC license and non-commercial use"
build: [
["./configure" "--prefix=%{prefix}%"]
[make]
]
install: [make "install"]
remove: ["ocamlfind" "remove" "@PACKAGE_NAME@"]
build-test: [
["./configure"]
[make test]
]
depends: [
"ocamlfind" {build}
"conf-gmp" {build} # needed for building src/yices
"zarith"
"ounit" {test}
]
post-messages: [
"OCamlYices2 is free (BSD-like) but Yices is not!
**Yices is free [only] for non-commercial use**
License terms: http://yices.csl.sri.com/yices-newnewlicense.html" {success}
]