diff options
author | Benjamin Barenblat <bbaren@mit.edu> | 2015-03-09 19:29:03 -0400 |
---|---|---|
committer | Benjamin Barenblat <bbaren@mit.edu> | 2015-03-09 19:29:03 -0400 |
commit | 2776394a5f58727e03b3a3dcdc2439f8eaad6625 (patch) | |
tree | ec796a6eb6c919ef6b7880b304ae9e970137c610 /debian/control | |
parent | 2e1bbc9749f1ad089c0fd366b74646921f35a759 (diff) |
Start packaging urweb
Documentation and Emacs files are not generated yet.
Diffstat (limited to 'debian/control')
-rw-r--r-- | debian/control | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/debian/control b/debian/control new file mode 100644 index 00000000..ce4adf29 --- /dev/null +++ b/debian/control @@ -0,0 +1,100 @@ +Source: urweb +Section: devel +Priority: extra +Maintainer: Benjamin Barenblat <bbaren@mit.edu> +Build-Depends: + debhelper (>= 9), + dh-autoreconf, + dh-exec, + libmysqlclient-dev, + libpq-dev, + libsqlite3-dev, + libssl-dev, + mlton +Standards-Version: 3.9.6 +Homepage: http://impredicative.com/ur/ + +Package: urweb +Architecture: any +Depends: + liburweb0, + liburweb-cgi0, + liburweb-fastcgi0, + liburweb-http0, + liburweb-static0, + ${shlibs:Depends}, + ${misc:Depends} +Description: purely functional language for web programming + Ur is a purely functional, statically-typed, strict programming language in + the tradition of ML and Haskell; however, it features a significantly richer + type system. Ur/Web is Ur plus a special standard library and associated + rules for parsing and optimization. Ur/Web supports construction of dynamic + web applications backed by SQL databases. + . + This package provides the urweb compiler and development libraries; you do not + need to install it to run applications written in Ur/Web. + +Package: liburweb0 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Suggests: + liburweb-cgi0, + liburweb-fastcgi0, + liburweb-http0, + liburweb-static0 +Description: urweb runtime system + Ur is a purely functional, statically-typed, strict programming language in + the tradition of ML and Haskell; however, it features a significantly richer + type system. Ur/Web is Ur plus a special standard library and associated + rules for parsing and optimization. Ur/Web supports construction of dynamic + web applications backed by SQL databases. + . + This package provides the runtime library for urweb. + +Package: liburweb-cgi0 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: urweb CGI backend + Ur is a purely functional, statically-typed, strict programming language in + the tradition of ML and Haskell; however, it features a significantly richer + type system. Ur/Web is Ur plus a special standard library and associated + rules for parsing and optimization. Ur/Web supports construction of dynamic + web applications backed by SQL databases. + . + This package provides the Ur/Web CGI backend. + +Package: liburweb-fastcgi0 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: urweb FastCGI backend + Ur is a purely functional, statically-typed, strict programming language in + the tradition of ML and Haskell; however, it features a significantly richer + type system. Ur/Web is Ur plus a special standard library and associated + rules for parsing and optimization. Ur/Web supports construction of dynamic + web applications backed by SQL databases. + . + This package provides the Ur/Web FastCGI backend. + +Package: liburweb-http0 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: urweb standalone backend + Ur is a purely functional, statically-typed, strict programming language in + the tradition of ML and Haskell; however, it features a significantly richer + type system. Ur/Web is Ur plus a special standard library and associated + rules for parsing and optimization. Ur/Web supports construction of dynamic + web applications backed by SQL databases. + . + This package provides the Ur/Web standalone backend. + +Package: liburweb-static0 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: urweb static backend + Ur is a purely functional, statically-typed, strict programming language in + the tradition of ML and Haskell; however, it features a significantly richer + type system. Ur/Web is Ur plus a special standard library and associated + rules for parsing and optimization. Ur/Web supports construction of dynamic + web applications backed by SQL databases. + . + This package provides the Ur/Web static-file backend. |