this repo has no description
1opam-version: "2.0" 2maintainer: "Steve Bleazard <stevebleazard@googlemail.com>" 3authors: "Steve Bleazard <stevebleazard@googlemail.com>" 4homepage: "https://www.github.com/stevebleazard/ocaml-conf-netsnmp" 5bug-reports: "https://www.github.com/stevebleazard/ocaml-conf-netsnmp/issues" 6license: "MIT" 7dev-repo: "git+https://www.github.com/stevebleazard/ocaml-conf-netsnmp.git" 8depexts: [ 9 ["libsnmp-dev"] {os-family = "debian" | os-family = "ubuntu"} 10 ["net-snmp-libs" "net-snmp-devel"] {os-distribution = "centos"} 11 ["net-snmp-libs" "net-snmp-devel"] {os-distribution = "fedora"} 12 ["libsnmp30" "net-snmp-devel"] {os-family = "suse" | os-family = "opensuse"} 13 ["net-snmp-libs" "net-snmp-dev"] {os-distribution = "alpine"} 14 ["net-snmp"] {os-family = "arch"} 15 ["net-snmp-libs" "net-snmp-devel"] {os-distribution = "ol"} 16 [] {os = "freebsd"} 17 [] {os = "openbsd"} 18] 19build: [ 20 ["sh" "-exc" "cc -c $CFLAGS -I/usr/local/include test.c"] 21] 22available: os != "macos" 23synopsis: "Package relying on net-snmp libs" 24description: """ 25Virtual package relying on net-snmp system libraries installation. 26This package can only install if the net-snmp lib and development packages 27are installed on the system.""" 28flags: conf 29extra-source "test.c" { 30 src: 31 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-netsnmp/test.c" 32 checksum: [ 33 "sha256=989c35e16ee5f6b289ee2219c78a6e251de7198116509daab3e00f649ae38317" 34 "md5=c037769771318ddce20d9471b6b8750e" 35 ] 36}