File: control

package info (click to toggle)
libhat-trie 0.0~git25f9e946-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 256 kB
  • ctags: 406
  • sloc: ansic: 2,165; makefile: 33; sh: 17
file content (42 lines) | stat: -rw-r--r-- 1,646 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Source: libhat-trie
Section: science
Priority: optional
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Sascha Steinbiss <satta@debian.org>
Build-Depends: debhelper (>= 9),
               dh-autoreconf
Standards-Version: 3.9.8
Testsuite: autopkgtest
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/libhat-trie.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/libhat-trie.git
Homepage: https://github.com/dcjones/hat-trie

Package: libhat-trie0
Architecture: any
Multi-Arch: same
Section: libs
Depends: ${shlibs:Depends},
         ${misc:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: HAT-trie, an extremely efficient (space and time) modern variant of tries
 This is an ANSI C99 implementation of the HAT-trie data structure of Askitis
 and Sinha, an extremely efficient (space and time) modern variant of tries.
 .
 The version implemented here maps arrays of bytes to words (i.e., unsigned
 longs), which can be used to store counts, pointers, etc, or not used at all
 if you simply want to maintain a set of unique strings.

Package: libhat-trie-dev
Provides: libhat-trie-dev
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${shlibs:Depends},
         ${misc:Depends},
         libhat-trie0 (= ${binary:Version})
Pre-Depends: ${misc:Pre-Depends}
Description: Development headers and static libraries for HAT-trie library
 This package provides development headers and static libraries for libhat-trie,
 an ANSI C99 implementation of the HAT-trie data structure of Askitis and
 Sinha, which is an extremely efficient (space and time) modern variant of
 tries.