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" "openssl"] 12 {os != "macos" & os != "freebsd" & os != "openbsd" & os != "netbsd"} 13 ["sh" "./osx-build.sh"] {os = "macos"} 14] 15depends: ["conf-pkg-config" {build}] 16depexts: [ 17 ["libssl-dev"] {os-family = "debian"} 18 ["openssl-devel"] {os-distribution = "centos"} 19 ["openssl-devel"] {os-distribution = "ol"} 20 ["openssl-devel"] {os-distribution = "fedora"} 21 ["openssl"] {os = "macos" & os-distribution = "homebrew"} 22 ["openssl"] {os = "macos" & os-distribution = "macports"} 23 ["openssl-dev"] {os-distribution = "alpine"} 24 ["openssl"] {os-distribution = "nixos"} 25 ["openssl"] {os-distribution = "arch"} 26 ["libopenssl-devel"] {os-family = "suse" | os-family = "opensuse"} 27 ["openssl"] {os = "win32" & os-distribution = "cygwinports"} 28] 29synopsis: "Virtual package relying on an OpenSSL library system installation" 30description: 31 "This package can only install if the OpenSSL library is installed on the system." 32flags: conf 33extra-source "osx-build.sh" { 34 src: 35 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-libssl/osx-build.sh" 36 checksum: [ 37 "sha256=74a80dd664a044ab448702b1a698d55bcf864ceb64a9b895298497cb586aca00" 38 "md5=faf81a6bf30e346abe94610f136c6193" 39 ] 40} 41available: os != "win32" | os-distribution = "cygwinports"