this repo has no description
1opam-version: "2.0" 2maintainer: "Anders Fugmann" 3authors: "Google" 4license: "BSD-3-Clause" 5homepage: "https://developers.google.com/protocol-buffers/" 6bug-reports: "https://github.com/protocolbuffers/protobuf/issues" 7dev-repo: "git+https://github.com/protocolbuffers/protobuf.git" 8 9depends: [ 10 "conf-pkg-config" 11] 12 13depexts: [ 14 ["libprotoc-dev"] {os-family = "debian"} 15 ["libprotoc-dev"] {os-family = "ubuntu"} 16 ["lib64protobuf-devel"] {os-distribution = "mageia"} 17 ["protobuf-devel"] {os-distribution = "centos"} 18 ["protobuf-devel"] {os-distribution = "fedora"} 19 ["protobuf-devel"] {os-distribution = "rhel"} 20 ["protobuf-dev"] {os-family = "alpine"} 21 ["protobuf"] {os-family = "arch"} 22 ["protobuf-devel"] {os-family = "suse"} 23 ["protobuf"] {os = "freebsd"} 24 ["protobuf"] {os = "macos" & os-distribution = "homebrew"} 25] 26 27x-ci-accept-failures: [ 28 "oraclelinux-7" # Package not available by default 29 "oraclelinux-8" # Package not available by default 30 "oraclelinux-9" # Package not available by default 31] 32 33available: (os-distribution != "ubuntu" | os-version >= "18.04") & (os-distribution != "centos" | os-version >= "8") 34synopsis: "Virtual package to install protobuf cpp headers" 35description: 36 "This package will install c header files and libaries for google protocol buffers via `opam depext`" 37flags: conf