File: control

package info (click to toggle)
xstr 0.2.1-19
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 156 kB
  • ctags: 192
  • sloc: ml: 1,070; makefile: 83; sh: 17
file content (24 lines) | stat: -rw-r--r-- 1,220 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Source: xstr
Section: libdevel
Priority: optional
Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
Uploaders: Stefano Zacchiroli <zack@debian.org>
Build-Depends: debhelper (>> 5.0.0), ocaml-nox (>= 3.10.0), ocaml-findlib (>= 1.1), cdbs, dpatch
Standards-Version: 3.7.3
Vcs-Svn: svn://svn.debian.org/svn/pkg-ocaml-maint/trunk/packages/xstr/trunk
Vcs-Browser: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/xstr/trunk/
Homepage: http://www.ocaml-programming.de/packages/

Package: libxstr-ocaml-dev
Architecture: any
Depends: ocaml-nox-${F:OCamlABI}, ocaml-findlib (>= 1.1), ${shlibs:Depends}
Description: OCaml library for frequent string operations
 xstr is an OCaml library for string operations.
 .
 This package implements frequent string operations: searching,
 replacing, splitting, matching. It is independent from the Str library,
 and can replace Str in many cases. Unlike Str, xstr is thread-safe.
 xstr does not implement regular expressions in general, but an
 important subset.  Some operations of xstr are performed as quickly as
 by Str; if the string to be processed is small, xstr is often faster
 than Str; if the string is big, xstr is up to half as fast than Str.