this repo has no description
1opam-version: "2.0"
2synopsis: "OCaml bindings to the Objective-C runtime and some base frameworks"
3description: """
4This package provides OCaml bindings to the Objective-C runtime and
5a selection of core Cocoa frameworks."""
6maintainer: ["Boris D. <borisd@gmx.com>"]
7authors: ["Boris D. <borisd@gmx.com>"]
8license: "ISC"
9tags: ["objc" "bindings" "cocoa" "macos" "gnustep"]
10homepage: "https://github.com/dboris/camlkit"
11bug-reports: "https://github.com/dboris/camlkit/issues"
12depends: [
13 "ocaml" {>= "4.13"}
14 "dune" {>= "3.13"}
15 "ctypes" {>= "0.22.0"}
16 "ctypes-foreign" {>= "0.22.0"}
17 "alcotest" {with-test}
18 "odoc" {with-doc}
19 "conf-gnustep-base" {os != "macos"}
20 "conf-libobjc2" {os != "macos"}
21 "conf-clang" {os != "macos"}
22]
23available: (arch = "arm64" | arch = "x86_64") & (os = "macos" | os = "freebsd")
24build: [
25 ["dune" "subst"] {dev}
26 [
27 "dune"
28 "build"
29 "-p"
30 name
31 "-j"
32 jobs
33 "@install"
34 "@runtest" {with-test}
35 "@doc" {with-doc}
36 ]
37]
38build-env: [
39 [CC = "clang"]
40]
41dev-repo: "git+https://github.com/dboris/camlkit.git"
42url {
43 src: "https://github.com/dboris/camlkit/archive/refs/tags/v0.3.0.tar.gz"
44 checksum: "sha256=15a105781e7a3a168587941733b08a61c576243a40e3a47dd9af29065e0affa2"
45}