]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/ocaml-http/debian/control
ocaml 3.09 transition
[helm.git] / helm / DEVEL / ocaml-http / debian / control
1 Source: ocaml-http
2 Section: devel
3 Priority: optional
4 Maintainer: Stefano Zacchiroli <zack@debian.org>
5 Build-Depends: debhelper (>> 4.0.0), ocaml-nox-3.08.3, ocaml-findlib, libpcre-ocaml-dev (>= 5.10.0), libocamlnet-ocaml-dev (>= 1.1)
6 Standards-Version: 3.6.2
7
8 Package: libhttp-ocaml-dev
9 Architecture: any
10 Depends: ocaml-nox-3.08.3, libpcre-ocaml-dev (>= 5.10.0), libocamlnet-ocaml-dev (>= 1.1)
11 Description: OCaml library for writing HTTP servers
12  OCaml HTTP is a library for the Objective Caml programming language,
13  used to build simple HTTP servers, largely inspired to Perl's
14  HTTP::Daemon module.
15  .
16  In order to implement an HTTP servers the programmer has to provide a
17  daemon specification which contains, among other parameters, a callback
18  function invoked by OCaml HTTP on well formed HTTP requests received.
19  HTTP responses could be sent over an out_channel connected with client
20  socket, accessible from the callback.
21  .
22  The library contains also facility functions that helps in creating
23  well formed HTTP responses and a tiny HTTP client.