-
Notifications
You must be signed in to change notification settings - Fork 3
/
bitwuzla-cxx.opam
43 lines (41 loc) · 1.39 KB
/
bitwuzla-cxx.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
43
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.6.1"
synopsis: "SMT solver for AUFBVFP (C++ API)"
description: """
OCaml binding for the SMT solver Bitwuzla C++ API.
Bitwuzla is a Satisfiability Modulo Theories (SMT) solver for the theories of fixed-size bit-vectors, arrays and uninterpreted functions and their combinations. Its name is derived from an Austrian dialect expression that can be translated as “someone who tinkers with bits”."""
maintainer: ["Frédéric Recoules <[email protected]>"]
authors: ["Frédéric Recoules"]
license: "MIT"
tags: ["SMT solver" "AUFBVFP"]
homepage: "https://bitwuzla.github.io"
doc: "https://bitwuzla.github.io/docs/ocaml/"
bug-reports: "https://github.com/bitwuzla/ocaml-bitwuzla/issues"
depends: [
"dune" {>= "3.7"}
"ocaml" {>= "4.12"}
"conf-git" {build}
"conf-gcc" {build}
"conf-g++" {build}
"zarith"
"ppx_inline_test" {with-test & >= "v0.13"}
"ppx_expect" {with-test & >= "v0.13"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/bitwuzla/ocaml-bitwuzla.git"
available: [ arch != "arm32" & (os = "linux" & (os-distribution != "ol" & os-distribution != "centos" | os-version >= 8) | os = "macos" & os-distribution = "homebrew") ]