this repo has no description
1opam-version: "2.0" 2maintainer: "gabriel.scherer@inria.fr" 3homepage: "https://google.github.io/snappy/" 4bug-reports: "https://github.com/ocaml/opam-repository/issues" 5build: [ 6 ["c++" "test.cpp" "-lsnappy" "-std=c++11"] {os = "linux"} 7 ["c++" "test.cpp" "-I/usr/local/include" "-L/usr/local/lib" "-lsnappy" "-std=c++11"] {os = "freebsd"} 8 ["sh" "-c" "c++ test.cpp -I\"$(brew --prefix snappy)/include\" -L\"$(brew --prefix snappy)/lib\" -lsnappy -std=c++11"] {os = "macos" & os-distribution = "homebrew"} 9] 10depexts: [ 11 ["snappy"] {os-distribution = "arch"} 12 ["snappy-dev"] {os-distribution = "alpine"} 13 ["libsnappy-dev"] {os-family = "debian"} 14 ["libsnappy-dev"] {os-family = "ubuntu"} 15 ["snappy"] {os = "macos" & os-distribution = "homebrew"} 16 ["snappy-devel"] {os-distribution = "fedora"} 17 ["snappy"] {os-family = "suse" | os-family = "opensuse"} 18 ["snappy"] {os = "freebsd"} 19] 20x-ci-accept-failures: [ 21 "oraclelinux-8" 22 "oraclelinux-9" 23] 24synopsis: "Virtual package relying on snappy" 25description: 26 "This package can only install if the snappy library is installed on the system." 27authors: "Gabriel Scherer" 28flags: conf 29extra-source "test.cpp" { 30 src: 31 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-snappy/test.cpp" 32 checksum: [ 33 "sha256=622f219f92f244f99827b7b25d0d3055045bb1796f9999466475e82b16f47aeb" 34 "md5=90fb2f59e92b7f5a3a65e776249d233f" 35 ] 36}