]> matita.cs.unibo.it Git - helm.git/blob - DEVEL/ocaml-http/0.1.4-3/debian/control
tagging
[helm.git] / DEVEL / ocaml-http / 0.1.4-3 / debian / control
1 Source: ocaml-http
2 Section: ocaml
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 Homepage: http://upsilon.cc/~zack/hacking/software/ocaml-http/
18
19 Package: libhttp-ocaml-dev
20 Architecture: any
21 Depends:
22  ocaml-nox-${F:OCamlABI},
23  libpcre-ocaml-dev,
24  libocamlnet-ocaml-dev,
25  ${misc:Depends}
26 Description: OCaml library for writing HTTP servers
27  OCaml HTTP is a library for the Objective Caml programming language,
28  used to build simple HTTP servers, largely inspired to Perl's
29  HTTP::Daemon module.
30  .
31  In order to implement an HTTP servers the programmer has to provide a
32  daemon specification which contains, among other parameters, a callback
33  function invoked by OCaml HTTP on well formed HTTP requests received.
34  HTTP responses could be sent over an out_channel connected with client
35  socket, accessible from the callback.
36  .
37  The library contains also facility functions that helps in creating
38  well formed HTTP responses and a tiny HTTP client.