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 5the following Cocoa frameworks: Foundation, WebKit, Vision, CoreImage, and Photos.""" 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.1.1-alpha.6.tar.gz" 44 checksum: "sha256=343a50bd7b890d4626d2d815d9c100c237083d7c9f90d24f5c3f4da1ebdd2927" 45}