3 changed files with 66 additions and 4 deletions
@ -0,0 +1,32 @@ |
|||
# This file is generated by dune, edit dune-project instead |
|||
opam-version: "2.0" |
|||
synopsis: "Binary decision diagram library" |
|||
description: "bdd is an OCaml library for binary decision diagram. " |
|||
maintainer: ["Léo Andrès <contact@ndrs.fr>"] |
|||
authors: ["Léo Andrès <contact@ndrs.fr>"] |
|||
license: "ISC" |
|||
homepage: "https://git.zapashcanon.fr/zapashcanon/bdd" |
|||
doc: "https://doc.zapashcanon.fr/bdd/" |
|||
bug-reports: "https://git.zapashcanon.fr/zapashcanon/bdd/issues" |
|||
depends: [ |
|||
"ocaml" {>= "4.05"} |
|||
"dune" {>= "2.0"} |
|||
"bisect_ppx" {>= "1.4"} |
|||
"memo" {>= "0.0.1"} |
|||
"hc" {>= "0.0.1"} |
|||
] |
|||
build: [ |
|||
["dune" "subst"] {pinned} |
|||
[ |
|||
"dune" |
|||
"build" |
|||
"-p" |
|||
name |
|||
"-j" |
|||
jobs |
|||
"@install" |
|||
"@runtest" {with-test} |
|||
"@doc" {with-doc} |
|||
] |
|||
] |
|||
dev-repo: "git://git.zapashcanon.fr/zapashcanon/bdd.git" |
@ -1,7 +1,37 @@ |
|||
(lang dune 1.11) |
|||
(lang dune 2.0) |
|||
|
|||
(name bdd) |
|||
|
|||
(using menhir 2.0) |
|||
(license ISC) |
|||
|
|||
(explicit_js_mode) |
|||
(authors "Léo Andrès <contact@ndrs.fr>") |
|||
|
|||
(maintainers "Léo Andrès <contact@ndrs.fr>") |
|||
|
|||
(source |
|||
(uri git://git.zapashcanon.fr/zapashcanon/bdd.git)) |
|||
|
|||
(bug_reports https://git.zapashcanon.fr/zapashcanon/bdd/issues) |
|||
|
|||
(homepage https://git.zapashcanon.fr/zapashcanon/bdd) |
|||
|
|||
(documentation https://doc.zapashcanon.fr/bdd/) |
|||
|
|||
(generate_opam_files true) |
|||
|
|||
(package |
|||
(name bdd) |
|||
(synopsis "Binary decision diagram library") |
|||
(description |
|||
"bdd is an OCaml library for binary decision diagram. ") |
|||
(depends |
|||
(ocaml |
|||
(>= 4.05)) |
|||
(dune |
|||
(>= 2.0)) |
|||
(bisect_ppx |
|||
(>= 1.4)) |
|||
(memo |
|||
(>= 0.0.1)) |
|||
(hc |
|||
(>= 0.0.1)))) |
|||
|
Loading…
Reference in new issue