Skip to content

Commit 5b6623e

Browse files
Merge pull request #28905 from lindig/expr
expr: Initial Opam release
2 parents 77e4331 + b80142c commit 5b6623e

File tree

1 file changed

+43
-0
lines changed
  • packages/expr/expr.0.5.2

1 file changed

+43
-0
lines changed

packages/expr/expr.0.5.2/opam

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# This file is generated by dune, edit dune-project instead
2+
opam-version: "2.0"
3+
synopsis: "Simple library to parse expressions"
4+
description: """
5+
A simple library to parse and evaluate arithmetic expressions that
6+
may include variables. The purpose is for other code to accept an
7+
expression rather than just a literal value. Both float and boolean
8+
expressions are supported."""
9+
maintainer: ["Christian Lindig <[email protected]>"]
10+
authors: ["Christian Lindig <[email protected]>"]
11+
license: "Unlicense"
12+
homepage: "https://github.com/lindig/expr"
13+
bug-reports: "https://github.com/lindig/expr/issues"
14+
depends: [
15+
"dune" {>= "2.7"}
16+
"ocaml" {>= "4.08.0"}
17+
"cmdliner" {>= "1.1.0" & < "2.0.0"}
18+
"odoc" {with-doc}
19+
]
20+
build: [
21+
["dune" "subst"] {dev}
22+
[
23+
"dune"
24+
"build"
25+
"-p"
26+
name
27+
"-j"
28+
jobs
29+
"@install"
30+
"@runtest" {with-test}
31+
"@doc" {with-doc}
32+
]
33+
]
34+
dev-repo: "git+https://github.com/lindig/expr.git"
35+
36+
x-maintenance-intent: ["(latest)"]
37+
url {
38+
src: "https://github.com/lindig/expr/archive/0.5.2.zip"
39+
checksum: [
40+
"sha256=08573601b9080e8097a7c202c0b377ae4ebd58f01adef344df50f3cae27b1daf"
41+
"md5=119a1ea19330b08d7e6bd4210f5fec5c"
42+
]
43+
}

0 commit comments

Comments
 (0)