this repo has no description
1opam-version: "2.0"
2maintainer: "gerd@gerd-stolpmann.de"
3homepage: "http://projects.camlcity.org/projects/ocamlnet.html"
4license: ["zlib-acknowledgement" "BSD-3-Clause" "GPL-2.0-only"]
5doc: ["http://projects.camlcity.org/projects/dl/ocamlnet-4.1.6/doc/html-main/index.html"]
6bug-reports: "https://gitlab.com/gerdstolpmann/lib-ocamlnet3/-/issues"
7dev-repo: "git+https://gitlab.com/gerdstolpmann/lib-ocamlnet3.git"
8build: [
9 [
10 "./configure"
11 "-bindir"
12 bin
13 "-%{conf-gssapi:enable}%-gssapi"
14 "-%{conf-gnutls:enable}%-gnutls"
15 "-%{pcre:enable}%-pcre"
16 "-%{lablgtk:enable}%-gtk2"
17 "-%{camlzip:enable}%-zip"
18 "-with-nethttpd"
19 ]
20 [make "all"]
21 [make "opt"]
22]
23authors: ["Gerd Stolpmann"]
24depends: [
25 "ocaml" {>= "4.00.0" & < "4.10"}
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]
55url {
56 src: "http://download.camlcity.org/download/ocamlnet-4.1.6.tar.gz"
57 checksum: [
58 "sha256=13b81c333c53229c0b0cfe785d9a99988f772d1bf876a4b7f657b2e5730313c8"
59 "md5=6a632896685421ff09e0c7ee3e17e79d"
60 ]
61 mirrors: "http://download2.camlcity.org/download/ocamlnet-4.1.6.tar.gz"
62}
63extra-source "ocamlnet.install" {
64 src:
65 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/ocamlnet/ocamlnet.install"
66 checksum: [
67 "sha256=8670b7452ef00ffc6609da81266e3c956297a35ed91421fed36bc9323e10f5b7"
68 "md5=ed54a9f3d6382ccc01ea1cf1af8f2c38"
69 ]
70}