diff options
Diffstat (limited to 'debian/control')
-rw-r--r-- | debian/control | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..f992617 --- /dev/null +++ b/debian/control @@ -0,0 +1,40 @@ +Source: uriparser +Section: libs +Priority: optional +Maintainer: Jörg Frings-Fürst <debian@jff-webhosting.net> +Build-Depends: + debhelper (>= 9), + dh-autoreconf +Standards-Version: 3.9.5 +Homepage: http://uriparser.sourceforge.net +Vcs-Git: git://anonscm.debian.org/collab-maint/uriparser.git +Vcs-Browser: http://anonscm.debian.org/cgit/collab-maint/uriparser.git + +Package: liburiparser1 +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: URI parsing library compliant with RFC 3986 + uriparser is a library that parses Uniform Resource Identifiers (URIs), + strictly adhering to RFC 3986 where syntax for URIs is defined. URIs + are used to identify resources, like http://www.debian.org/ or + urn:isbn:0-395-36341-1. + . + uriparser has the following features: + . + * strictly compliant to RFC 3986, implementing: + + parsing + + reference resolution + + reference creation + + recomposition + + syntax-based normalization + * fast (linear input length time complexity) + * unicode support + +Package: liburiparser-dev +Architecture: any +Section: libdevel +Depends: liburiparser1 (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends} +Description: development files for uriparser + This package provides the development files for uriparser, a library to parse + Uniform Resource Identifiers (URIs). Install it if you want to compile a + program that makes use of this library. |