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