this repo has no description
1opam-version: "2.0"
2maintainer: "unixjunkie@sdf.org"
3authors: "iMatix"
4homepage: "http://zeromq.org/"
5bug-reports: "https://github.com/ocaml/opam-repository/issues"
6license: "LGPL-2.0-or-later"
7build: [
8 ["sh" "-c" "cc test.c $(pkg-config --libs --cflags libzmq)"]
9]
10depends: ["conf-pkg-config" {build}]
11depexts: [
12 ["libzmq3-dev"] {os-family = "debian"}
13 ["libzmq3-dev"] {os-family = "ubuntu"}
14 ["zeromq"] {os = "macos" & os-distribution = "homebrew"}
15 ["zmq"] {os = "macos" & os-distribution = "macports"}
16 ["zeromq-dev"] {os-distribution = "alpine"}
17 ["zeromq"] {os = "win32" & os-distribution = "cygwinports"}
18 ["epel-release" "zeromq-devel"] {os-distribution = "centos"}
19 ["zeromq"] {os-distribution = "arch"}
20 ["zeromq-devel"] {os-distribution = "fedora"}
21 ["zeromq-devel"] {os-family = "suse" | os-family = "opensuse"}
22 ["libzmq4"] {os = "freebsd"}
23]
24x-ci-accept-failures: [
25 "oraclelinux-7" # package not available
26 "oraclelinux-8" # package not available
27 "oraclelinux-9" # package not available
28]
29synopsis: "Virtual package relying on zmq library installation"
30description: """
31This package can only install if the zmq devel library is installed
32on the system."""
33flags: conf
34extra-source "test.c" {
35 src:
36 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-zmq/test.c"
37 checksum: [
38 "sha256=5638d9ebb8a32d81ff8a1e66365f6df980ef39e9697f06d72e9eb405db7d58da"
39 "md5=2272935eca81c8bc500270c30c558fa3"
40 ]
41}