-
Notifications
You must be signed in to change notification settings - Fork 2
/
camlkit-base.opam
44 lines (43 loc) · 1.07 KB
/
camlkit-base.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis:
"OCaml bindings to the Objective-C runtime and some base frameworks"
description: """
This package provides OCaml bindings to the Objective-C runtime and
a selection of core Cocoa frameworks."""
maintainer: ["Boris D. <borisd@gmx.com>"]
authors: ["Boris D. <borisd@gmx.com>"]
license: "ISC"
tags: ["objc" "bindings" "cocoa" "macos" "gnustep"]
homepage: "https://github.com/dboris/camlkit"
bug-reports: "https://github.com/dboris/camlkit/issues"
depends: [
"ocaml" {>= "4.13"}
"dune" {>= "3.13"}
"ctypes" {>= "0.22.0"}
"ctypes-foreign" {>= "0.22.0"}
"alcotest" {with-test}
"odoc" {with-doc}
"conf-gnustep-base" {os != "macos"}
"conf-libobjc2" {os != "macos"}
"conf-clang" {os != "macos"}
]
available: arch = "arm64" | arch = "x86_64"
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
build-env: [
[CC = "clang"]
]
dev-repo: "git+https://github.com/dboris/camlkit.git"