this repo has no description
1opam-version: "2.0"
2maintainer: "David Sheets <sheets@alum.mit.edu>"
3authors: ["The OpenSSL Project"]
4bug-reports: "https://github.com/ocaml/opam-repository/issues"
5homepage: "https://www.openssl.org/"
6license: "Apache-1.0"
7build-env: [
8 [HOMEBREW_NO_AUTO_UPDATE = "1"]
9]
10build: [
11 ["pkg-config" "--print-errors" "--exists" "openssl"]
12 {os != "freebsd" & os != "openbsd" & os != "netbsd" & # libssl is provided by base system on BSDs
13 os-distribution != "homebrew"}
14 ["sh" "-ex" "./homebrew.sh" "check"] {os-distribution = "homebrew"}
15]
16install: [
17 ["sh" "-ex" "./homebrew.sh" "install" lib] {os-distribution = "homebrew"}
18]
19depends: [
20 "conf-pkg-config" {build}
21]
22depexts: [
23 ["libssl-dev"] {os-family = "debian"}
24 ["libssl-dev"] {os-family = "ubuntu"}
25 ["openssl-devel"] {os-distribution = "centos"}
26 ["openssl-devel"] {os-distribution = "ol"}
27 ["openssl-devel"] {os-distribution = "fedora"}
28 ["libopenssl-devel"] {os-family = "suse" | os-family = "opensuse"}
29 ["openssl-dev"] {os-family = "alpine"}
30 ["openssl"] {os-family = "arch"}
31 ["openssl"] {os-distribution = "homebrew"}
32 ["openssl"] {os-distribution = "macports"}
33 ["openssl"] {os-distribution = "nixos"}
34 ["openssl"] {os = "win32" & os-distribution = "cygwinports"}
35]
36synopsis: "Virtual package relying on an OpenSSL library system installation"
37description:
38 "This package can only install if the OpenSSL library is installed on the system."
39flags: conf
40extra-source "homebrew.sh" {
41 src:
42 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-libssl/homebrew.sh.3"
43 checksum: [
44 "sha256=61685e30a074899eafe92efeec0bf1fe5b62f2bbfb6bcca0fa96b14a29f401e4"
45 "md5=a524c7b9cb12a5be63c7d5933ccd1c43"
46 ]
47}
48available: os != "win32" | os-distribution = "cygwinports"