This repository was archived by the owner on Jun 26, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +34
-1
lines changed
Expand file tree Collapse file tree 3 files changed +34
-1
lines changed Original file line number Diff line number Diff line change @@ -11,4 +11,3 @@ __pycache__
1111
1212core
1313vgcore. *
14- * .opam
Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ Run `make docs` to generate documentation. Open
1515auto-generated docs online:
1616[ API] ( https://calsign.github.io/ocaml-opencv/ ) .
1717
18+ ## Pinning the dev repo
19+ To build and insstall the package directly from the development
20+ repository, use
21+ ` opam pin add opencv https://github.com/Calsign/ocaml-opencv.git `
22+
1823## Goals
1924
2025 - Provide access to the full OpenCV API through OCaml
Original file line number Diff line number Diff line change 1+ # This file is generated by dune, edit dune-project instead
2+ opam-version: "2.0"
3+ synopsis: "OCaml bindings for OpenCV"
4+ maintainer: ["William Smith"]
5+ authors: ["William Smith"]
6+ license: "LGPL-2.1-only"
7+ homepage: "https://github.com/Calsign/ocaml-opencv"
8+ bug-reports: "https://github.com/Calsign/ocaml-opencv/issues"
9+ depends: [
10+ "ctypes-foregin"
11+ "dune" {>= "2.7" & >= "2.7"}
12+ "owl"
13+ "odoc" {with-doc}
14+ ]
15+ build: [
16+ ["dune" "subst"] {dev}
17+ [
18+ "dune"
19+ "build"
20+ "-p"
21+ name
22+ "-j"
23+ jobs
24+ "@install"
25+ "@runtest" {with-test}
26+ "@doc" {with-doc}
27+ ]
28+ ]
29+ dev-repo: "git+https://github.com/Calsign/ocaml-opencv.git"
You can’t perform that action at this time.
0 commit comments