-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheuler.opam
39 lines (38 loc) · 1.11 KB
/
euler.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "An arithmetic library for OCaml's native integers "
description: """
Euler is a library for doing arithmetic with OCaml’s native integers (31 or 63 bits). It provides:
* overflow-detecting arithmetic, that can be susbstituted for Stdlib arithmetic;
* advanced arithmetic functions;
* solvers for some forms of integer equations;
* modular arithmetic, with a nice functorial interface.
"""
maintainer: ["Glen Mével <[email protected]>"]
authors: ["Glen Mével <[email protected]>"]
license: "WTFPL"
homepage: "https://github.com/gmevel/euler-lib"
doc: "https://gmevel.github.io/euler-lib/index.html"
bug-reports: "https://github.com/gmevel/euler-lib/issues"
depends: [
"dune" {>= "2.0"}
"ocaml" {>= "4.07"}
"stdcompat" {>= "18"}
"containers" {>= "3.0"}
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/gmevel/euler-lib.git"
available: arch != "x86_32" & arch != "arm32"