]> matita.cs.unibo.it Git - helm.git/blob - helm/software/DEVEL/ocaml-http/debian/control
* debian/control
[helm.git] / helm / software / 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 (>> 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 XS-Vcs-Svn: svn://mowgli.cs.unibo.it/trunk/helm/software/DEVEL/ocaml-http
8 XS-Vcs-Browser: http://helm.cs.unibo.it/websvn/listing.php?path=/trunk/helm/software/DEVEL/ocaml-http/
9
10 Package: libhttp-ocaml-dev
11 Architecture: any
12 Depends: ocaml-nox-${F:OCamlABI}, libpcre-ocaml-dev (>= 5.11.1), libocamlnet-ocaml-dev (>= 2.2)
13 Description: OCaml library for writing HTTP servers
14  OCaml HTTP is a library for the Objective Caml programming language,
15  used to build simple HTTP servers, largely inspired to Perl's
16  HTTP::Daemon module.
17  .
18  In order to implement an HTTP servers the programmer has to provide a
19  daemon specification which contains, among other parameters, a callback
20  function invoked by OCaml HTTP on well formed HTTP requests received.
21  HTTP responses could be sent over an out_channel connected with client
22  socket, accessible from the callback.
23  .
24  The library contains also facility functions that helps in creating
25  well formed HTTP responses and a tiny HTTP client.