]> git.pld-linux.org Git - packages/perl-Tree-Trie.git/blame - perl-Tree-Trie.spec
- mass commit: cosmetics (removed trailing white spaces)
[packages/perl-Tree-Trie.git] / perl-Tree-Trie.spec
CommitLineData
4eef7744 1%include /usr/lib/rpm/macros.perl
c1d5c9a3 2%define pdir Tree
3%define pnam Trie
e00e16ae 4Summary: Tree::Trie - An implementation of the Trie data structure in Perl
c2c4c98d 5Summary(pl): Tree::Trie - perlowa implementacja struktury danych Trie
fe4f5817 6Name: perl-Tree-Trie
6d81625c 7Version: 0.4
8a2d8bad 8Release: 4
8bbfd769 9License: GPL
fe4f5817 10Group: Development/Languages/Perl
41e8dd60 11Source0: http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
fcdb3eaa 12# Source0-md5: b57755b32921ee3ccf10869be8cc4b5e
58cc7a13 13BuildRequires: perl-devel >= 5.6
8a2d8bad 14BuildRequires: rpm-perlprov >= 4.1-13
e5d9bc5a 15BuildArch: noarch
550d67c8 16BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
fe4f5817 17
18%description
c2c4c98d
JB
19This module implements a trie data structure. The term "trie" comes
20from the word re*trie*val, but is generally pronounced like "try". A
21trie is a tree structure (or directed acyclic graph), the nodes of
22which represent letters in a word. For example, the final lookup for
23the word 'bob' would look something like
24$ref->{'b'}{'o'}{'b'}{HASH(0x80c6bbc)} (the HASH being an end
25marker). Only nodes which would represent words in the trie exist,
26making the structure slightly smaller than a hash of the same data
27set.
28
29%description -l pl
30