this repo has no description
1opam-version: "2.0"
2maintainer: "Christopher Zimmermann <christopher@gmerlin.de>"
3homepage: "https://github.com/savonet/ocaml-ssl"
4dev-repo: "git+https://github.com/savonet/ocaml-ssl.git"
5bug-reports: "https://github.com/savonet/ocaml-ssl/issues"
6build: [
7 ["./configure" "--prefix" prefix] {os != "macos"}
8 ["sh" "./osx-configure.sh" prefix] {os = "macos"}
9 [make]
10]
11install: [[make "install"]]
12remove: [["ocamlfind" "remove" name]]
13depends: [
14 "ocaml" {>= "4.02.0" & < "5.0"}
15 "ocamlfind" {build}
16 "conf-which" {build}
17 "conf-libssl"
18 "base-bytes"
19]
20conflicts: [
21 "base-nnp"
22 "ocaml-option-nnpchecker"
23]
24synopsis: "Bindings for OpenSSL"
25authors: "Samuel Mimram <samuel.mimram@ens-lyon.org>"
26flags: light-uninstall
27url {
28 src:
29 "https://github.com/savonet/ocaml-ssl/releases/download/0.5.5/ocaml-ssl-0.5.5.tar.gz"
30 checksum: [
31 "sha256=2cc270d2a2f38c4e7972f3abf00f524ce86f668e40c7fcf4e0af99df3b8b3a82"
32 "md5=cdb1cdf9ee8c582165d4d11f35e53c4d"
33 ]
34}
35extra-source "osx-configure.sh" {
36 src:
37 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/ssl/osx-configure.sh"
38 checksum: [
39 "sha256=2589f587df5c96806cea407eadcbc03e44256c1d1dddd76a8a2b4dcff065ff24"
40 "md5=465e7c27f1881eae33212a9f9b0a8dff"
41 ]
42}