]> matita.cs.unibo.it Git - helm.git/blob - 0.1.4-2/debian/control
[svn-buildpackage] Tagging ocaml-http (0.1.4-2)
[helm.git] / 0.1.4-2 / debian / control
1 Source: ocaml-http
2 Section: devel
3 Priority: optional
4 Maintainer: Stefano Zacchiroli <zack@debian.org>
5 Build-Depends: debhelper (>> 5.0.0), cdbs, ocaml-nox (>= 3.10.0), camlp4 (>= 3.10.0), ocaml-findlib (>= 1.1), libpcre-ocaml-dev (>= 5.11.1), libocamlnet-ocaml-dev (>= 2.2)
6 Standards-Version: 3.7.2
7
8 Package: libhttp-ocaml-dev
9 Architecture: any
10 Depends: ocaml-nox-${F:OCamlABI}, libpcre-ocaml-dev (>= 5.11.1), libocamlnet-ocaml-dev (>= 2.2)
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.