this repo has no description
1opam-version: "2.0" 2authors: "Gerd Stolpmann" 3maintainer: "gerd@gerd-stolpmann.de" 4homepage: "http://projects.camlcity.org/projects/ocamlnet.html" 5license: ["zlib-acknowledgement" "BSD-3-Clause" "GPL-2.0-only"] 6doc: "http://projects.camlcity.org/projects/dl/ocamlnet-4.1.9/doc/html-main/index.html" 7bug-reports: "https://gitlab.com/gerdstolpmann/lib-ocamlnet3/-/issues" 8dev-repo: "git+https://gitlab.com/gerdstolpmann/lib-ocamlnet3.git" 9build: [ 10 [ 11 "env" "MAKE=%{make}%" 12 "./configure" 13 "-bindir" bin 14 "-%{conf-gssapi:enable}%-gssapi" 15 "-%{conf-gnutls:enable}%-gnutls" 16 "-%{pcre:enable}%-pcre" 17 "-%{lablgtk:enable}%-gtk2" 18 "-%{camlzip:enable}%-zip" 19 "-with-nethttpd" 20 ] 21 [make "all"] 22 [make "opt"] 23] 24depends: [ 25 "ocaml" {>= "4.02" & < "5"} 26 "ocamlfind" 27 "ocamlbuild" {build} 28 "base-bytes" 29] 30depopts: [ 31 "conf-gnutls" 32 "conf-gssapi" 33 "lablgtk" 34 "pcre" 35 "camlzip" 36] 37install: [make "install"] 38synopsis: 39 "Internet protocols (HTTP, CGI, e-mail etc.) and helper data structures" 40description: """ 41(mail messages, character sets, etc.) 42 43Ocamlnet is an enhanced system platform library for Ocaml. As the name 44suggests, large parts of it have to do with network programming, but 45it is actually not restricted to this. Other parts deal with the 46management of multiple worker processes, and the interaction with 47other programs running on the same machine. You can also view Ocamlnet 48as an extension of the system interface as provided by the Unix module 49of the standard library.""" 50conflicts: [ 51 "ocaml-variants" 52 {= "4.04.0+flambda" | = "4.04.1+flambda" | = "4.04.2+flambda"} 53 "shell" 54 "base-domains" 55] 56url { 57 src: "http://download.camlcity.org/download/ocamlnet-4.1.9.tar.gz" 58 checksum: "sha256=f98ed19979848f1949b1b001e30ac132b254d0f4a705150c6dcf9094bbec9cee" 59 mirrors: "http://download2.camlcity.org/download/ocamlnet-4.1.9.tar.gz" 60} 61extra-source "ocamlnet.install" { 62 src: 63 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/ocamlnet/ocamlnet.install" 64 checksum: [ 65 "sha256=8670b7452ef00ffc6609da81266e3c956297a35ed91421fed36bc9323e10f5b7" 66 "md5=ed54a9f3d6382ccc01ea1cf1af8f2c38" 67 ] 68}